/*mobile version*/

body {
    margin: 0%;
    background-color: #19041f;
}

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    background-color: #19041f;
}

.personalia {
    background-image: linear-gradient(rgb(78, 8, 92), rgb(161, 36, 151), transparent);
    width: 100%;
    display: flex;
    justify-content: center; 
    color: antiquewhite;
    align-items: center; 
    flex-direction: row;
}

.profile {
    color: antiquewhite;
    width: 100%;
}

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

.person-info {
    padding: 2.5%;
    text-shadow: 0px 0px 10px violet, 0px 0px 5px violet;
}

.person-info > p {
    margin: 5px;
}

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

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

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

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

.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: rgba(39, 140, 39, 0.96);
    margin-top: 0px;
    font-size: 14px;
}

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

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

}


/*student uitwerking*/

