body {
    background-color: rgb(33, 33, 33);
    overflow-x: hidden;
    font-family: Verdana, sans-serif;
    margin: 0;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background:#0000 ; 
  }
::-webkit-scrollbar-thumb {
    background:rgb(111, 111, 111);
    border-radius: 5px;
}
.topnav {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
.topnav::before {
    filter: blur(5px);
}
.topnav a {
    float: left;
    display: block;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.topnav .icon {
    display: none;
}
#top {
    transition: background-color 0.3s ease;
}
@media screen and (max-width: 600px) {
    .topnav a{display: none;}
    .topnav a.icon {
      float: right !important;
      display: block;
    }
} 
@media screen and (max-width: 600px) {
    .topnav.responsive {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #333 !important;
    }
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    #navabout {
        float: none;
    }
}
.topnav{
    z-index: 9999;
}
.title{
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-bottom: 150px;
    padding-top: 150px;
    transition: background-image 1s ease;
}
.list {
    position: absolute;
    top: 500px;
    left: 0;
    display: flex;
    flex-direction: column;
}
.gamelist {
    padding-bottom: 30px;
}
.gamelist p {
    text-align: center;
    color: #ffffff;
    font-size: 5vh;
}
.gallery {
    background-color: #0000;
    border-radius: 15px;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
* {
    box-sizing: border-box;
} 
.game1-img:hover {
    width: 100%;
    transform: scale(1.1);
}
.game2-img:hover {
   width: 100%;
   transform: scale(1.1);
}
.game3-img:hover {
   width: 100%;
   transform: scale(1.1);
}
.game4-img:hover {
   content: url('./images/nothing.png');
   width: 100%;
   transform: scale(1.1);
}
.game .gallery img {
  transition: all 0.3s ease;
}
.game {
    padding: 4px 6px;
    float: left;
    width: 25%;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}
@media only screen and (max-width: 1150px) {
    .game {
      width: 50%;
      margin: 6px 0;
    }
}
@media only screen and (max-width: 650px) {
    .game {
      width: 100%;
    }
}  
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.terms {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    background-color: rgb(26, 26, 26);
    padding-bottom: 30px;
}
.terms a {
    color: #ffffff;
    text-align: center;
}
.terms button {
    border-radius: 12px;
    padding: 12px 16px;
    border: none;
    background-color: rgb(0, 195, 255);
}
.reveal {
    opacity: 0;
    animation: reveal 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    animation-fill-mode: forwards;
}
@keyframes reveal {
    0% {
      opacity: 0;
      transform: translateY(300px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
.footer {
    text-align: center;
    width: 100%;
    background: #131313
}
.foot {
    padding: 30px
}
.footer a {
    color: #fff;
    text-decoration: none;
    padding-top: 3px;
    padding-bottom: 3px;
}
.footer a:hover {
    color: rgb(160, 160, 160);
}
.footer p {
    color: #fff;
    text-decoration: none;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(0 195 255);
    margin: 1rem 0;
}