body{
    background-image: url(../img/Gameuitleg.jpg);
    background-size: cover;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
}
.Gameuitleg{
    display: flex;
    margin: 60px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #b8cffba6;
    width: 25%;
    height: 380px;
    border-radius: 100%;
    
  
}
.GameTitel{
    font-size: 30px;
    color: black;

   
}
.Uitleg{
    font-size: 18px;
    color: black;
    margin-bottom: 100px;
    width: 350px;
    text-align: center;
}
.Gameuitleg:nth-child(2){
   margin-top: 250px;
   margin-bottom: 0;
   
   
}

#Games{
    display: flex;
    justify-content: space-between;
}
#diver{
    z-index: -1;
    position: absolute;
    height: 30%;
    width: 20%;
    animation: diver 50s infinite;
    
}

@keyframes diver {
    0% {
    transform: translateX(0px);
    }
    5%{
        transform: translatex(70px)translateY(0px);
    }
    10%{

        transform: translatey(300px);
    }
    20% {
    transform: translateX(200px)translateY(-30px);
    }
    30% {
    transform: translateY(600px);
    }
    40% {
    transform: translateX(450px)translateY(320px);
    }
    50% {
    transform: translateX(700px)translateY(500px);
    }
    60% {
    transform: translateY(300px) translateX(600px);
    }
    70% {
    transform: translateY(190px)translateX(1200px);
    }
    80%{
    transform: translateY(40px)translateX(1200px);
    }
    85%{
    transform: translateY(60px)translateX(570px);
    }
}

@media only screen and (max-width: 1025px){
    .Gameuitleg{
        width: 36%;
    }
    #diver{
        width: 25%;
    }
    body{
        background-size: 110%;
    }
}
@media only screen and (max-width: 769px){
    .Gameuitleg{
        height: 290px;
        
    }
    #diver{
        width: 33%;
    }
    body{
        background-size: 130%;
    }
    .GameTitel{
        font-size: 20px;
    }
    .Uitleg{
        font-size: 16px;
        width: 250px;
        margin-bottom: 80px;
    }
}
@media only screen and (max-width: 426px){
    body{
        overflow-y: scroll;
    }
    .Gameuitleg{
        height: 290px;
        width: 60%;
        
    }
    #Games{
        flex-direction: column;
        align-items: center;
    }
    #diver{
        width: 40%;
        height: 120px;
        overflow-y: hidden;
    }
    body{
        background-size: 200%;
    }
    .GameTitel{
        font-size: 15px;
    }
    .Uitleg{
        font-size: 14px;
        width: 200px;
        margin-bottom: 60px;
    }
}
