body{
    margin: 10;
    padding: 0;
    font-family: Arial;
    display: flex;
    flex-direction: column;
}

h1, h3{
    color: 	 #0096FF;
}

h5{
    margin: auto;
}

hr{
    margin: 0px;
}

input{
    padding: 5px;
    margin-top: 4px;
    margin-bottom: 4px;
    width: -webkit-fill-available;
}

input[type=submit]{
    width: auto;
    float: right;
    cursor: pointer;
}
header{
    background-color: rgb(228, 228, 228);
    display: flex;
    flex-direction: column;
    align-items: center;
}

header img{
    margin-top: 10px;
    width: 50%;
    border: 4px solid white;
    border-radius: 50%;
}

.profile__category{
    margin: 20px;
}

.input-invalid {
    border-color: #900;
    background-color: #fdd;
}

/*hidden mobile*/
.profile__category--hidden-mobile{
    display: none;
}

.profile__category-experience--title-period{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.profile__category-experience--title-period p{
    font-size: small;
    display: none;
}

.accepted{
    background-color: green;
}

.error{
    background-color: red;
}

.hide{
    display: none;
}

.gdpr-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 5px;
    border: 2px solid gray;
    border-radius: 15px 15px 15px 15px;
}

.gdpr-consent__description{
    display: flex;
    justify-content: center;
}

.gdpr-consent__choice{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__button--accept {
    background-color: #d5f5d5;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.gdpr-consent__button--accept:hover {
    background-color: #c5e3c5;
}

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.hidegdpr{
    display: none;
}

.showgdpr{
    display: block;
}






@media only screen and (min-width: 800px) {
    body{
        flex-direction: row;
    }

    header{
        width: 120rem;
    }

    header h1{
        order: -1;
    }

    /*hidden profiel op desktop website*/
    .profile__category--hidden-mobile{
        margin: 20px;
        display: block;
    }
    /*hidden werkervaring period op desktop website*/
    .profile__category-experience--title-period p{
        display: block;
    } 
    
}