/*mobile version*/

/* 
Color palette

link: https://colorhunt.co/palette/dcf2f17fc7d93654860f1035

Light: #DCF2F1
Medium: #7FC7D9
Darker: #365486
Darkest: #0F1035

White: #fefff9



*/

body{
    margin: 2px;
    border-radius: none;
}

h1{
    font-size: 100%;
}

h2{
    font-size: 90%;
}
hr{
    border: 1px solid #0F1035;
    margin: 0;
}
.page {
    border-radius: 25px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: Arial;
}


.personalia-section {
    padding-top: 16%;
    padding-bottom: 20%;
    box-shadow: 1px 2px 20px -3px #000000;
    border-radius: 0;
    
    z-index: 1;
    /* background: linear-gradient(0deg, rgba(15,16,53,1) 0%, rgba(127,199,217,1) 35%, rgba(220,242,241,1) 100%); */
    /* background: #7FC7D9; */
    
    /* background: linear-gradient(180deg, rgba(54,84,134,1) 0%, rgba(127,199,217,1) 20%, rgba(127,199,217,1) 80%, rgba(54,84,134,1) 100%); */
    background: linear-gradient(180deg, rgba(54,84,134,1) 0%, rgba(127,199,217,1) 10%, rgba(127,199,217,1) 90%, rgba(54,84,134,1) 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.personalia{
    display: flex;
    flex-direction: column;
    width: 90%;
    text-align: center;
    justify-content: center;
}

.personalia-person-article {
    text-align: center;
    width: 90%;
    padding-bottom: 0px;
}

.personalia h2{
    text-align: center;
    
}

.personalia article{
    display: flex;
    flex-direction: row;
    padding: 5px;
    margin: 0 auto;
    width: 40%;
}
.personalia article p{
    margin-left: 4%;
    font-size: 3vw;
    text-align: left;
}
.personalia article p a{
    color: black;
}


.personalia article svg{
    width: 15%;
    margin-top: 0 auto;
    margin-bottom: 0 auto;
}

.person-name{
    text-align: center;
}

.person-logo {
    display: block;
    margin: 0 auto;
    margin-bottom: 10%;
    width: 50%;
    border: 4px solid black;
    border-radius: 50%;
    animation: glow 3s ease alternate;
}

.profile {
    box-shadow: 1px 2px 20px -3px #000000;
    background-color: #fefff9;
    width: 100%;
}

.profile-content {
    padding: 15px;
    font-size: 20px;
}

.profile-content__category-title {
    color: #365486;
}

.profile-content__category--hidden-mobile {
    display: none;
}

.profile-content__element {
    display: flex;
    flex-direction: column;
}

.profile-content__element-list{
    margin: 0;
    font-size: 70%;
}

.profile-content__element--hidden-mobile {
    display: flex;
    flex-direction: column;
    display: none;
}

.profile-content__title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.profile-content__period {
    display: none;
}

.profile-content__institute {
    color: #365486;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* size greater than min-width */

@media only screen and (min-width: 800px) {

    

    body{
        margin: 20px;
        border-radius: 25px;
    }

    .page {
        flex-direction: row;
    }

    .personalia article p{
        font-size: 1vw;
        margin-left: 3%;
    }
    .personalia-section {
        padding-top: 5%;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        width: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .personalia article{
        display: flex;
        flex-direction: row;
        padding: 5px;
        width: 100%;
    }

    .personalia article svg{
        width: 10%;
        margin-top: 0 auto;
        margin-bottom: 0 auto;
    }

    .profile {
        box-shadow: 1px 2px 20px -3px #000000;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px ;
        background-color: #fefff9;
        width: 100%;
    }
    .profile-content__element-list{
        font-size: 70%;
    }

    .profile-content__category--hidden-mobile{
        display: flex;
        flex-direction: column;
    }

    /*fix: anders als stipje zichtbaar*/
    .profile-content__category--hidden-mobile hr{
        width: 100%;
    }

    .profile-content__element--hidden-mobile {
        display: flex;
    }

    .profile-content__element-header{
        display: flex;
        justify-content: space-between;
    }

    .profile-content__period {
        font-size: 12px;
        color: #5c6166;
        display: flex;
    }

}


/*student uitwerking*/

