body {
    height: 200vh;
    background: hsla(227, 100%, 12%, 1);
    background: linear-gradient(180deg, hsla(227, 100%, 12%, 1) 16%, hsla(174, 39%, 50%, 1) 100%);
    background: -moz-linear-gradient(180deg, hsla(227, 100%, 12%, 1) 16%, hsla(174, 39%, 50%, 1) 100%);
    background: -webkit-linear-gradient(270deg, hsla(227, 100%, 12%, 1) 26%, hsla(174, 39%, 50%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#000D3D", endColorstr="#4DB1A7", GradientType=1);
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: 0.5s;
    margin-top: 60px;  
}

.nav {
    background-color: rgba(0, 13, 61, 0.8);
    padding: 20px;
    position: fixed;
    top: 0;
    z-index: 10;
    opacity: 1; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    color: white;
    padding: 14px 16px;
    transition: opacity 225ms ease-in-out;
}

.fetch_logo {
    color: whitesmoke;
    padding-right: 30px;
    height: auto;
    font-size: 200%;
}

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    display: inline;
    font-size: 1.4em;
    padding: 10px;
    border-radius: 35%; 
    transition: 0.3s;
    margin-right: 30px; 
    opacity: 150%;
}

.nav-link::before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px; 
    height: 40px; 
    background-color: rgba(255, 255, 255, 0); 
    border-radius: 50%;
    transition: background-color 0.3s ease; 
    z-index: -1; 
}

.nav-link:hover::before {
    background-color: rgba(255, 255, 255, 0.3); 
}

.dropdown {
    float: left;
    overflow: hidden;
    transition: opacity 225ms ease-in-out;
}

.dropdown .dropbtn {
    font-family: Arial, sans-serif;  
    border: none;
    outline: none;
    font-size: 1.4em;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    transition: opacity 0.3s ease, background-color 0.3s ease;;
    margin: 0;
}

.about-section {
    margin-top: 50px;
    padding: 60px 20px;
    text-align: center;
    color: white;

}

.about-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.949);
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.949);
}

.about-section p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
    margin: auto;
    text-shadow: 0 0 10px rgb(255, 255, 255);
}

@media (max-width: 768px) {

    .top-container h1 {
      font-size: 1.5em;
    }
  
    .top-container p {
      font-size: 1em;
    }
  
    .games-container {
      grid-template-columns: 1fr;
    }
  
    .nav {
      flex-wrap: nowrap;
      overflow-x: auto;
    }
    
    .nav .dropdown {
      display: none;
    }
  
    .nav-links {
      display: flex;
      flex-direction: row;
      position: static;
      top: auto;
      left: auto;
      background-color: transparent;
      width: auto;
    }
  
    .nav-link {
      padding: 15px;
      border-radius: 0;
    }
  
    .nav-toggle {
      display: none;
    }

    h1{
        font-size: 2em;
    }

    h2{
        font-size: 1.5em;
    }

    p{
      margin: 10px;
      font-size: 30%;  
      padding: 10px;
    }

  
  }