*{
  margin: 0px;
  padding: 0px;  
}

.wrapper{
    width: 70%;
    margin: 0px auto;
}

body{
    font-family: Arial;
}

.header-one{
    background-color: #56ddf0;
}

.header-two{
    background-color: #660405;
}

.header-three{
    background-color: #0050ff;
}

.nav{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding: 30px 0px 20px;
    font-family: Arial;
    font-weight: bold;
}

nav a{
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
}

.header-one nav a{
    color: #69197c;
}

.header-one a:hover{
    background-color: #69197c33;
}

.header-two nav a{
    color: #ffcc00;
}

.header-two a:hover{
    background-color: #ffcc0033;
}

.header-three nav a{
    color: #fc3232;
}

.header-three a:hover{
    background-color: #fc323233;
}

.logo{ 
    display: flex;
    justify-content: center;
}

.logo img{
    padding-top: 15px;
    width: 50%;
}

.intro, .locations{
    margin: 5% 0px;
}

.breda, .roosendaal{
    margin: 15px 0px;
}

p{
    padding: 5px 0px;
}

.breda-imgs, .roosendaal-imgs{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breda-imgs img, .roosendaal-imgs img{
    max-width: 100%;
}

.about-study{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0px;
}

.about-study img{
    max-width: 60%;
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.info-two{
    display: flex;
    flex-direction: column-reverse;
}

.info img{
    max-width: 100%;
}

.text{
    background-color: #ffcc00;
    color: #660405;
    border-radius: 20px;
    padding: 20px 40px;
    font-weight: 400;
}

.text-two{
    background-color: #660405;
    color: #ffcc00;
}

.grid-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin-bottom: 50px;
}

.grid-item img{
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.right-img img{
    object-position: right;
}

.left-img img{
    object-position: left;
}

.top-img img{
    object-position: top;
}

.footer-one{
    background-color:#56ddf0;
    color:  #69197c;
    padding: 20px 0px;
}

.footer-two{
    background-color:#660405;
    color: #ffcc00;
    padding: 20px 0px;
}

.footer-three{
    background-color:#0050ff;
    color: #fc3232;
    padding: 20px 0px;
}

@media only screen and (min-width: 426px){
    .nav{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 70%;
    }

    .logo{
        width: 30%;
    }

    .logo img{
        width: 100px;
        padding-bottom: 12px;
        padding-top: 0px;
    }    
}

@media only screen and (min-width: 768px) {           
    .breda-imgs, .roosendaal-imgs{
        display: flex;
        flex-direction: row;
    }

    .breda-imgs img, .roosendaal-imgs img{
        max-width: 30%;
    }

    .grid-container{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .info{
        flex-direction: row;
    }

    .info img{
        max-width: 50%;
    }
}

@media only screen and (min-width: 1245px) {    
    .grid-container{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}