:root{
    --Secondary: #56ddf0;
    --primary: #69177b;

    --lightBackground: #ffffff;
}

*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--text);
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav{
    position: fixed;
    display: flex;
    width: 100%;
    height: 10vh;
    align-items: center;
    justify-content: space-between;
    background-color: var(--Secondary);
    z-index: 10;
}

nav{
    display: flex;
    width: 60%;
    align-items: center;
    justify-content: space-around;
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
}

nav a{
    text-decoration: none;
}

.logo img{
    max-width: 10vh;
    margin-left: 25px;
}

@media (max-width: 700px) {
    .logo img{
        display: none;
    }

    nav{
        width: 100%;
    }
  }

.main{
    display: flex;
    width: 100%;
    height: 90vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    line-height: 80px;
    letter-spacing: 2px;
    color: var(--primary);
    background-color: white;
}

.knopen{
    margin-top: 50px;
}

@media (max-width: 600px) {
    .hide{
        display: none;
    }
  }

.over{
    width: 100%;
    min-height: 500px;
    background-color: var(--Secondary);
    display: flex;
    justify-content: center;
}

.over-main{
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
}

.over-main h1{
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 30px;
    margin-top: 20px;
    color: var(--primary);
}

.over-main p{
    color: rgb(39, 39, 39);
    font-size: 20px;
    line-height: 30px;
}

.bold{
    font-weight: 900;
}

.rooster{
    width: 100%;
    background-color: var(--lightBackground);
    display: flex;
    justify-content: center;
}

.rooster-main{
    display: flex;
    width: 90%;
    justify-content: center;
    flex-wrap: wrap;

}

.rooster-main h1{
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 30px;
    margin-top: 20px;
    color: var(--primary);
}

.rooster-main img{
    width: 100%;
}

.docenten{
    width: 100%;
    min-height: 500px;
    background-color: var(--lightBackground);
    display: flex;
    justify-content: center;
}

.docenten-main{
    display: flex;
    width: 80%;
    justify-content: center;
    flex-wrap: wrap
}

.docenten-main h1{
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 30px;
    margin-top: 70px;
    color: var(--primary);
}

.pfp{
    border-radius: 99px;
    background-color: rgb(176, 176, 176);
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.info{
    display: flex;
    align-items: center;
}

.row2{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 750px) {
    .row2{
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .info{
        margin-top: 30px;
    }
  }

.footer{
    width: 100%;
    height: 175px;
    background-color: var(--Secondary);
    display: flex;
    justify-content: center;
}

.footer-main{
    display: flex;
    width: 90%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-main h1{
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 30px;
    margin-top: 20px;
    color: var(--primary);
}













.button-main {
    border: 2px solid white;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: var(--text);
    cursor: pointer;
    display: inline-block;
    padding: 15px 70px;
    transform: translateY(0);
    transition: transform 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    margin-top: 20px;
    font-weight: 800;
    color: white;
  }
  
  .button-main:hover {
    transform: translateY(-6px);
    text-decoration: none;
    transition-duration: .2s;
    border: solid 2px black;
  }
  
  .button-main:active {
    background-color: #EDEFF2;
    box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
    transition: none 0s;
  }