/* 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." */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=DynaPuff:wght@400..700&display=swap');

body {
  background-color : #F2FCFC;
  color: black;
  font-family: DynaPuff;
  font-size:20px;
  top: 100px;
}


.phoneBackground 
{
  max-width:90vw;
  max-height:60vh;

}

.nav_bar{
  background-color: #E1FCFC;
  height: 30px;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  gap: 10px;

  position: sticky;
  top: 0;
  z-index: 1000;
}


.frame{
  width: 500px;
  height: 350px;
  display: block;
}

.desktop_background{
  max-width:90vw;
  max-height:30vh;
}


.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.crnrimg{
 position: fixed; 
 right:20px;
  bottom:1px;
transform:scaleX(-1);
  height: 48vh;
    width:48vh;
  
}


a, a:visited {
  text-decoration:none;
  color:inherit;
}

.button{
  color:black;
  background-color:#8bfcfc;
  padding:5px;
  border-radius:5px;
  
}

.img {
  display:block;
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
  align-items: center;
  height: 65vh;
  width: 65vh;
  
}


.walking-cow{
  position: absolute;
  top:50px;
  left:-120px;
  
  width:100px;
  height:auto;
  
  animation:walkAcross 6s linear infinite;
  z-index:1;
  }
  
  
  
  
  @keyframes walkAcross{
    0% {
     left: -120px 
    }
    100% {
     left: 110%; 
      }
    }
    
@media(max-width: 600px) {
  
   .img{
    height: 30vh;
    width:30vh;
    }
    
    
    .walking-cow{
  position: absolute;
  top:50px;
  left:-120px;
  
  width:50px;
  height:auto;
  
  animation:walkAcrossMOBILE 6s linear infinite;
  z-index:1;
  }  
   .crnrimg{
 position: fixed; 
 right:0px;
transform:scaleX(-1);
  height: 20vh;
    width:20vh;
    bottom:1px;
   }
  body {
  background-color : #F2FCFC;
  color: black;
  font-family: DynaPuff;
  font-size:17px;
  top: 100px;
}
.phoneBackground 
{
  max-height:auto;
  max-width:24%;
  
}
 .button{
  color:black;
  background-color:#8bfcfc;
  padding:20px;
  border-radius:5px;
  margin-bottom: auto;
 }
 .nav_bar{
  background-color: #E1FCFC;
  height: 85px;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  gap: 10px;

  position: sticky;
  top: 0;
  z-index: 1000;
}

 
 
}
    
  @keyframes walkAcrossMOBILE{
    0% {
     left: 0px 
    }
    100% {
     left: 86%; 
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    