@font-face {
    font-family:Onest;
    src: url(fonts/main.ttf);
    
} 
@font-face {
    font-family:OnestBold;
    src: url(fonts/bold.ttf);
    
} 
 header {
    padding-bottom: 10px;
 }


#gsearchbar {
    outline: none;
    width: 355px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 12px;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

#gsearchbar:focus {
    background-color: #eee;
    box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.4);
}

 .gradient-background {
    background: linear-gradient(300deg,#000000,#292929,#4c4c4c,#6b6b6b,#979797,#6b6b6b,#4c4c4c,#000000);
    background-size: 480% 480%;
    animation: gradient-animation 80s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
body {
    background-image: url("img/bg.jpg");
    background-repeat: no-repeat;
    background-position: absolute;
    font-family:Onest;
    color: white; 
    text-align: center;
}
  
.logo {
    height:200px;
    width: 200px;
}

a {
    padding: 10px;
    font-size: 24px;
    text-decoration: none;
    color: white;
}

.dot {
    font-size: 24px;
    display: inline;
}

.visit {
    font-family:OnestBold;
    display: inline;
}

div.polaroid {
  margin-right:1%;
  margin-left:1%;
  margin-top:7%;
  margin-bottom:7%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
  border-radius: 45px;
  font-family: 'Onest', sans-serif;
  display: inline-block;
  transition: 0.5s;
}


div.polaroid:hover{
    transform:scale(1.3);
    z-index: 2;
}

.game {  
    border-radius: 50px;
    height:200px;
    width:200px;
  }
  
  @keyframes smooth-appear {
    to{
      bottom: 20px;
      opacity:1;
    }
  }
  .container {
    background-color: #6b6b6b;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color:white;
    padding: 10px;
    position: fixed;
    bottom: -100%;
    opacity:0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    animation: smooth-appear 1s ease forwards;
    font-size: 16px;
  }
