/*mobile version*/

body{
    margin: 0;
}

.item{
    width: 90%;
    margin-left: 5%;
}

#rcorners1 {
    border-radius: 25px;
    background: #73AD21;
    padding: 20px;
    width: 200px;
    height: 150px;
  }

.container{
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.elementbox{
    border-radius: 15px 50px;
    background-color: #dbdcde;
}

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

.personalia {
    background-color: #dbdcde;
    width: 100%;
    display: flex;
    flex-direction:row;
    justify-content:start;
    align-items:center;
}

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

    font-size: 20px;
    width: 100%;
}

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

.profile-content__category-title {
    color: rgba(39, 140, 39, 0.96);
    margin-bottom: 0px;
}

.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;
    margin-left: 15px;
}

@media only screen and (min-width: 800px) {
    .item{
        width: 45%;
    }

    .itemcontainer{
        flex-direction: row;
        display: flex;
        justify-content: center;
        gap: 5%;
    }
    
    .container{
        justify-content: center;
        flex-direction: column;
        display: flex;
    }
    .page {
        flex-direction: column;
    }

    .person-name{
        order: 1;
    }

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

    .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;
        margin-right: 15px;
    }

}


/*student uitwerking*/

