*{
    
    margin: 0;
    padding: 0;
}
body{
    background-color:rgba(240, 240, 236, 0.932);
    font-family: 'Times New Roman', Times, serif;
}
a{
    text-decoration: none;
    color: black;
}
p{
    font-family: 'Times New Roman', Times, serif;
}
nav{
    margin-top: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    align-items: center;
    height: 220%;
}
.logo{
    display: flex;
    padding-left: 10%;
    height: 100%;
}
.logo img{
    height: 100%;
    width: auto;
}
.name{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
h1{
    font-size: 4rem;
}

.fr-nl {
    display: flex;
    font-size: 2rem;
    padding-left: 40%;
    cursor: pointer;
}
.chosen {
    font-weight: bold;
    text-decoration: underline;

}
.chosen, .notchosen{
    transition: ease;
    transition-duration: 0.2s;    
}
.notchosen:hover{
    scale: 1.3;
}

.imghome{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imghome img{
    width: 75%;
    border-radius: 10px;
}
header p {
    font-size: 2rem;
}
.generaltext{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 10px;
}

.generaltext p{
    width: 75%;
    text-align: center;
}

.main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kines{
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}
.kine-left, .kine-right{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(212, 209, 198);
    border-radius: 10px;
    height: max-content;
    min-height: 470px;
    font-size: 1.1rem;
}

.kine-left img, .kine-right img{
    border-radius: 200px;
    margin-top: 10px;
    width: 40%;
    height: auto;
}

h2{
    font-size: 1.5rem;
}

.info-kine{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    height: 100%;
    transition: max-height 1s ease;
}

.hiden, .hidenr{
    width: 100%;
    padding-top: 10px;
    padding-left: 5px;
    overflow: hidden;
    transition: max-height s ease;
}

h3{
    font-size: 1.2rem;
    padding-bottom: 2px;
    padding-bottom: 5px;
}
.hiden ul, .hidenr ul{
    padding-left: 10px;
}

.hiden p, .hidenr p{
    padding-top: 10px;
}

/* read more left */
#ch{
    display: none;
}

.hiden{
    display: none;
}

#ch:checked ~ .hiden{
    display: block;
}

#ch:checked ~ label{
    display: none;
}

/* read more right */
#chr{
    display: none;
}

.hidenr{
    display: none;
}

#chr:checked ~ .hidenr{
    display: block;
}

#chr:checked ~ label{
    display: none;
}
/* ---------------------------------- */
label{
    display: block;
    align-items: end;
    cursor: pointer;
    border: solid;
    border-radius: 5px;
    margin: 20px 0;
    width: 100px;
    text-align: center;
    transition: ease;
    transition-duration: 0.2s;
}

label:hover{
    scale: 1.1;
}

footer{
    display: flex;
    justify-content: center;
    gap: 10%;
    padding-top: 30px;
    margin-bottom: 30px;
}
.footer-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-veronique{
    padding-top: 30px;
}
.footer-left p{
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.footer-right{
    width: 40%;
    letter-spacing: 1px;
}

.google-maps iframe{
    padding-top: 5px;
    width: 100%;
    height: 200px;
}

@media screen and (max-width: 900px) {
    nav{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logo{
        padding-left: 0;
        height: 100px;
    }
    h1{
        font-size: 2.2rem;
    }
    .fr-nl{
        font-size: 1.7rem;
    }
    .imghome img, .generaltext p{
        width: 95%;
    }
    header p{
        font-size: 1.5rem;
    }

}
@media screen and (max-width: 600px){
    .kines{
        display: flex;
        flex-direction: column;
        width: 80%;
        align-items: center;
        gap: none;
    }
    .kine-left, .kine-right{
        width: 90%;
        min-height: 52px;
    }
}
@media screen and (max-width: 450px) {
    nav{
        align-items: center;
        height: 100vh;
    }
    .language{
        position: absolute;
        top: 30px;
        right: 50px;
    }
    .fr-nl{
        font-size: 2.2rem;
    }
    .logo{
        width: auto;
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 30%;
    }
    h1 {
        font-size: 2.5rem;
        padding-top: 10%;
    }
    .kines{
        width: 95%;
    }
    footer{
        flex-direction: column;
        align-items: center;
    }
    .footer-right{
        width: 80%;
    }
    .footer-right i{
        padding-top: 20px;
        text-align: center;
        width: 100%;
    }
}