* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

nav {
    background: linear-gradient(to bottom, #e89876, #d67856);
    padding: 3vh 5vw;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5vw;
    margin-right: 20px;
}

.logo-circle {
    width: 6vw;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 3vw;
    font-weight: bold;
    font-family: "Pixelify Sans", sans-serif;
    color: #2a2a2a;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 1vw;
    margin-left: auto;
}

.nav-btn {
    background: #c85a3a;
    color: #2a2a2a;
    padding: 2vh 3vw;
    border: none;
    border-radius: 25px;
    font-size: 2vw;
    font-weight: bold;
    font-family: "Pixelify Sans", sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 0 #8b3a1a, 0 6px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    background: #d67856;
    box-shadow: 0 6px 0 #8b3a1a, 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

       body {
           background-image: url("../image/achtergrond.png");
           background-size: cover;
           background-position: center;
           background-repeat: no-repeat;
       }

       .gamedag {
           color: #000000;
       }

       .gamedag img {
           border-radius: 15px;
       }

       .gamedag h1 {
           font-size: 48px;
           font-family: "Pixelify Sans", sans-serif;
           margin-bottom: 25px;
           margin-top: 200px;
           text-align: center;
       }

       .randomgame {
           display: flex;
           justify-content: center;
           gap: 100px;
       }

       .randomgame img {
        width: auto; 
        height: 15vw;
       }




       .flexbox-game {
           display: flex;
           flex-direction: row;
           justify-content: center;
           align-items: center;
           gap: 50px;
           background-color: #FE9B65;
           padding-top: 20px;
           padding-bottom: 20px;
       }

       .randomgametekst {
           width: 250px
       }

       .randomgametekst h2 {
           font-size: 32px;
           font-family: "Pixelify Sans", sans-serif;
           margin-bottom: 20px;
       }

       .randomgametekst p {
           font-size: 20px;
           font-family: "Pixelify Sans", sans-serif;
       }

       .randomgametekst a {
           font-size: 20px;
           font-family: "Pixelify Sans", sans-serif;
           color: #000000;
           text-decoration: line;
           font-weight: bolder;
           color: white;

       }

       .dit-zijn-wij {
           font-size: 20px;
           font-family: "Pixelify Sans", sans-serif;
           color: #000000;
           background-color: #FE9B65;

           margin-top: 15vw;
           margin-bottom: 25vw;
           padding: 50px 50px;

           display: flex;
           flex-direction: row;
           justify-content: space-between;

       }

       .dit-zijn-wij h1 {
           font-size: 36px;
           font-family: "Pixelify Sans", sans-serif;
           color: white;
       }

       .dit-zijn-wij p {
           width: 60%;
           font-size: 30px;
           font-family: "Pixelify Sans", sans-serif;
       }

       footer {
           display: flex;
           background-color: #FE9B65;
           margin-top: 60px;
           align-items: center;
           padding: 50px 0;
       }

       footer p {
           font-size: 25px;
           font-family: "Pixelify Sans", sans-serif;
       }

       .footerCntr-flexbox {
           display: flex;
           flex-direction: row;
           justify-content: space-around;
           align-items: center;
           gap: 5px;
           margin-left: 40px;
       }

       .foto-dit-zijn-wij img {
           border-radius: 15px;
       }

       .tekst-dit-zijn-wij {
           width: 45%;
       }
.nav-btn a {
    text-decoration: none;
    color: #2a2a2a;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: row;
    gap: 10px;

    display:flex;
    margin: 0;
    padding: 0;
  }
  .nav-btn {
    padding: 1vh 2vw;
    font-size: 3vw;
  }

  .logo-circle img {
    width:10vw;
    height: auto;
  }
  .logo-circle
    {
        width: 10vw;
        height: auto;
    }
    .randomgame img:first-child {
        display:none;
    }
    .randomgame img:nth-child(2) {
        width: 45vw;
        height: auto;
    }
    .randomgametekst a {
        font-size: 8vw;
    }
    
    .dit-zijn-wij {
        display:flex;
        flex-direction: row;;
    }
    .tekst-dit-zijn-wij p {
        width: 450px;
    }
    
}

