/* 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: 'Annie'; /* set name */
  src: url("AnnieUseYourTelescope-Regular.ttf"); /* url of the font */
  }
  
  @font-face {
  font-family: 'Daughter'; /* set name */
  src: url("ArchitectsDaughter-Regular.ttf"); /* url of the font */
  }
  

  body {
    background-color: #f1f1f1;
    color: black;
    font-family: Verdana;
    min-height:100vh;
    margin: 0px;
  }

  
  @media screen and (max-width: 720px) {
    .bawx {
      border: solid 2px brown;
    }
    body{
      font-size:18px;
    }
  }
  
  main{
    width:100vw;
    height:100vh;
    max-width:100vw;
    
  }
  
  .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width:100%;
    height: 100%;
    
    margin: auto;
    background-color:#fff;
  }
  

.bawx::before{
    position:absolute;
    margin-top: -25px;
    align-self: flex-start;
    content: '';
    width:200px;
    height:40px;
    background-color: #ccff99;
    transform: rotate(5deg);
    opacity:0.7;
    transition: transform 0.2s linear;
  }
    
  .bawx{
    display:flex;
    justify-content: center;
    align-items: center;
    
    padding: 10px;
    margin: 20px 100px;
    
    background-color: pink;
    border-radius: 5px;  
  }
  
  .thread{
    display:flex;
    border: 4px dashed #ccff99;
    border-radius:5px;
    justify-content: center;
    align-items: center;
  }
  
  .bla{
    text-align:center;
    color:#533;
    font-family:'daughter';
    letter-spacing:5px;
    
    margin: 4rem;
  }
  
  .sticker2{
    position:fixed;
    margin-top:-20em;
    margin-left: 500px;
    transform: rotate(0deg);
    transition: transform 0.2s linear;
  }
  .sticker2 img{
    width:70px;
  }
  
  .sticker2:hover {
  transform: rotate(4deg);
  transform: scale(1.5);
  }
  
  
  
  
  
  

