/*mobile version*/

* {
    padding: 0;
    margin: 0%;
    box-sizing: border-box;
}

body {
    background-color: rgb(222, 210, 210);
    color: rgb(127, 147, 164);
}

img {
    width: 100%;
}






.personalia {
    max-width: 1000px;
    /* border-radius: 7%; */
    width: 100%;
    display: grid;
    flex-direction: column;
    margin: 0, auto;


    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    align-content: center;

}

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

.person-logo {

    max-width: 250px;

}



.profile-content__category-title {
    color: rgba(99, 35, 203, 0.96);
}

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

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

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

.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(164, 58, 202, 0.96);
    margin-top: 0px;
    font-size: 14px;
}

.hide {
    display: none;
}

.show {
    display: block;
}

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

    .page {

        flex-direction: row;

    }

    .person-name {
        font-style: italic;
    }

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

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

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

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

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

    .hide {
        display: none;
    }

    .show {
        display: block;
    }


}


/*student uitwerking*/