/*mobile version*/
html, body {
    padding: 0;
    margin: 0;
    
  }

.page {
    width: auto;
    display: flex;
    flex-direction: column;
    font-family: Arial;
}
.person-logo {
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    border-radius: 60%;
    margin: 40px 36px 0px;
    width: 70%;
    animation: glow 3s ease alternate;
}

.person {
    background-image: linear-gradient(hsl(212, 100%, 71%), #fff);
    width: 100%;
    height: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.person-intro {
    border-top: 5px, red;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.person-info{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-person-info{
    display: flex;
    font-size: 5vw;
    width: 80%;
    
}
.person-info-hr{
    margin: 17px;
    width: 100%;
}
.profile {
    background-color: #faf8f8;
    width: 100%;
}


.profile-skill {
    display: flex;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    padding: 15px;
    font-size: 20px;
    background-color: hsl(202, 100%, 80%);
}
.profile-content {
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    padding: 15px;
    margin-top: 10px;
    font-size: 20px;
    background: color #5595e6;;
}



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



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

.profile-content__period {
    display: none;
}

.profile-content__institute {
    color:#fff;
    margin-top: 0px;
    font-size: 14px;
}

.profile-project {
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    padding: 15px;
    margin-top: 10px;
    font-size: 20px;
    background: color #5595e6;;
}

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

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

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

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

.profile-project__period {
    display: none;
}

.profile-project__institute {
    color:#fff;
    margin-top: 0px;
    font-size: 14px;
}

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

    
    .page {
       margin: 6px;
      
    }
    .person-logo {
        box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
        border-radius: 60%;
        margin: 40px 36px 0px;
        width: 50%;
        animation: glow 3s ease alternate;
    }
    .person {
        background-image: linear-gradient(hsl(212, 100%, 50%), #fff);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }
    .p-person-info{
        display: flex;
        font-size: 3vw;
        width: 60%;
        
    }
    .profile-skill {
    padding: 15px;
    font-size: 20px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.4);
    background-color: hsl(0, 0%, 100%);
    
    }

    .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-header{
        display: flex;
        justify-content: space-between;
    }

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

}


/*student uitwerking*/

