@import url('https://fonts.googleapis.com/css2?family=Asap&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Asap", sans-serif;
}
body{
    background: #03357c;
}
section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
section:nth-child(1){
    color: #f9aecd;
}
section:nth-child(2){
    color: #03357c;
    background: #f9aecd;
    background-image: url(../img/elton.jpg);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
} 
section:nth-child(2) .text-box{
    color: #f9aecd;
    background: #03357c;
}
section:nth-child(3){
    color: #f9aecd;
}
section:nth-child(3) .text-box{
    color: #03357c;
    background: #f9aecd;
}
section:nth-child(4){
    color: #03357c;
    background: #f9aecd;
}
section:nth-child(4) .text-box{
    color: #f9aecd;
    background: #03357c;
}
section:nth-child(5){
    color: #f9aecd;
}
section .container{
    margin: 100px;
}
section h1{
    font-size: 5rem;
    margin: 20px;
}
section h2{
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
}
section .text-container{
     display: flex;
}
section .text-container .text-box{
    margin: 20px;
    padding: 20px;
}
section .text-container .text-box h3{
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}
  
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 2s all ease;
}
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}
.noob p{
    font-size: larger;
    padding-bottom: 20px;
}
.gifz{
    display: flex;
    justify-content: space-around;
}
.docenten{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.docent{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: x-large;
    padding: 0px 40px 0px 40px;
}
.docent img{
    width: 200px;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px){
    section h1{
      font-size: 3rem;
    }
    section h2{
      font-size: 24px;
    }
}

@media (max-width: 900px){
    section h1{
      font-size: 2rem;
      text-align: center;
    }
    section img{
        width: 500px;
    }
    section .text-container{
      flex-direction: column;
    }
    .reveal{
        transform: translateY(0);
        opacity: 1;
    }
    .noob p{
        font-size: larger;
        padding-bottom: 20px;
    }
    .gifz{
        flex-direction: column;
        align-items: center;
    }
    .docenten{
        flex-direction: column;
        align-items: center;
    }
    .docent{
        padding: 0px;
        text-align: center;
    }
    .docent img{
        width: 150px;
    }
}

@media (max-width: 600px){
    section h1{
      font-size: 1.5rem;
    }
    section h2{
      font-size: 20px;
    }
    section img{
        width: 250px;
    }
    section .text-container .text-box h3{
      font-size: 18px;
    }
    .docent img{
        width: 100px;
    }
}

@media (max-width: 320px){
    img{
        width: 50px;
    }
    section h1{
        font-size: 1rem;
    }
    section h2{
        font-size: 10px;
    }
    .noob p{
        font-size: xx-small;
    }
    .gifz img{
        width: 100px;
    }
    section img{
        width: 100px;
    }
}