/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: mainFont; /* set name */
  src: url("fonts/Mistake Note.otf"); /* url of the font */
}

@font-face {
  font-family: titleFont; /* set name */
  src: url("fonts/Super Joyful.ttf"); /* url of the font */
}


body {
  background-color: white;
  color: black;
  font-family: Verdana;
    font-family: mainFont, sans-serif;
              

}

h1,h2,h3,h4,h5{
    font-family: titleFont, Arial, Helvetica, sans-serif;
    
    text-align: center;
}


.container {
    
    box-shadow: 0px 0px 10px black;
     backdrop-filter: blur(10px) sepia(90%) hue-rotate(210deg) brightness(20%);
     border-radius: 5px;
     color: white;
    border: 5px solid #ccc;
    
}
body{
      background-attachment: fixed;
      background-image: url("bg.png");
    
              
}

h1 {

    font-size: 2.7vw;
}