body {
    font-family: Arial, serif;
}

.page {
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

.profile-content__element--hidden-mobile {
    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) {

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

}

/*student uitwerking*/
.profile-content__personalia-list {
    list-style-type: square;
    font-size: 14px;
}

.skill-title {
    font-weight: bold;
    font-size: 16px;
}

.skill-container {
    background-color: #eee;
}

.w-100 {
    width: 100%;
}

.skills {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    font-size: 12px;
}

.skill-1 {width: 90%; background-color: #9de19a;}
.skill-2 {width: 80%; background-color: #a4c5ea;}
.skill-3 {width: 70%; background-color: #bca9e1;}
.skill-4 {width: 65%; background-color: #e7eca3;}

.contact-button {
    color: white;
    background-color: rgba(39, 140, 39, 1);
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
}

#gdpr-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    font-size: 25px;
    text-align: center;
    transition: all 0.2s;
    margin: 0 auto;
    width: 80%;
    display: none;
}

#gdpr-banner button {
    background-color: rgba(39, 140, 39, 1);
    border: none;
    border-radius: 3px;
    padding: 8px 16px;
    font-size: 16px;
    color: #fff;
}

#gdpr-banner button:hover {
    background-color: rgba(39, 140, 39, .5);
}

.connect-with-me-buttons {
    display: flex;
}

.connect-with-me-button {
    flex: 1;
}