/*mobile version*/
body, html {
    margin: 0;
    height: 100%;
}

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.personalia {
    background-color: #e7e8ec;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.personalia-content__element > p {
    margin: 0 !important;
    padding: 5px;
}

.personalia-content__element > p > i {
    margin-right: 5px;
}

.profile-content__title > i {
    margin-right: 5px;
}

.person-name {
    align-self: center !important;
}

.profile {
    background-color: #faf8f8;
    width: 100%;
}

.person-logo {
    border: 4px solid black;
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 60%;
    animation: glow 3s ease alternate;
    align-self: center !important;
}

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

.profile-content__category-title, .personalia-content__category-title  {
    color: rgba(39, 140, 39, 0.96);
}

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

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

.profile-content__description {
    font-size: 16px;
}

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

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

.profile-content__period, .personalia-content__period {
    display: none;
}

.profile-content__institute, .personalia-content__institute {
    color: rgba(39, 140, 39, 0.96);
    margin-top: 0px;
    font-size: 14px;
}

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

    .profile {
        height: 100%;
    }

    .page {
        flex-direction: row;
    }

    .person-name{
        order: -1;
    }

    .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;
    }

    .personalia {
        width: auto;
    }

}

@media only screen and (min-width: 1024px){
    .personalia, .profile {
        min-height: 100vh;
    }
}


/*student uitwerking*/

