mobile version

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

body {
    margin: 0;
    background-color: #7691C6;
}

.personalia {
    background-color: #7691C6;
    width: 100%;
    height: 215px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}


.profile {
    background-color: #E1E8FA;
    width: fit-content;    
    font-size: larger;
}

.gdpr-consent {
    background-color: white;
    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;
    z-index: 5;
}

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

.gdpr-consent__button--accept {
    background-color: #7691C6;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    width: 160px;
    border: 1px solid #7691C6;
}

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

.gdpr-consent__button--reject {
    background-color: white;
    width: 160px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.gdpr-consent__button--reject:hover {
    background-color: #b6bbc4;
}

.hide{
    display: none;
}

.gif-container {
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 90px;
}


.gif {
    width: 100px;
    height: 100px;

}

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

.show{
    display: block;
}

.person-logo {
    width: 175px;
    border-radius: 50%;
    animation: glow 3s ease alternate;
    margin-left: 20px;
    position: absolute;
    top: 20px;
    
}

.location-picture{
    width: 30px;
    position: absolute;
    top: 325px;
}

.email-picture{
    width: 30px;
    position: absolute;
    top: 364px;
}

.phone-picture{
    width: 30px;
    position: absolute;
    top: 401px;
}
.person-name, .person-birth, .person-quote {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0px;
}

.profile-contact__information{
    font-weight: 100;
    font-size: medium;
    margin-left: 35px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.information{
    width: 260px;
    margin-left: 210px;
}

.person-name {
    margin-top: 10vh;
    font-size: 27px;
}

.person-birth{
    margin-right: 15vh;
    font-size: 15px;
    font-weight: 100;
}

.person-quote {
    margin-right: 9.6vh;
    font-size: 14px;
    font-weight: 100;  
}

.profile-content {
    padding: 15px;
    margin-top: 215px;
    width: fit-content;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.profile-content__description {
    font-size: 16px;
    margin-top: 0px;
    font-weight: 100;
}

.profile-content__category-title {
    color: #546C9B;
    letter-spacing: 2px;
}

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

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

#confirmation-message {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px;
    display: none;
  }

.profile-content__hr {
    width:20%;
    height: 6px;
    background-color:#546C9B;
    text-align:left;
    margin-left:0;
}

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

.profile-content__title {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0px;
    margin-top: 6px;
    color: #546C9B;
    width: 440px;
}

.profile-content__period {
    position:static;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #546C9B;
    font-weight: 100;
    font-size: medium;
    
}

.profile-content__institute {
    color: #8BA5D2;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
}

input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px; 
    resize: vertical 
  }

  .g-recaptcha {
    background-color: #7691C6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .g-recaptcha:hover {
    background-color: #9ebaf1;
  }
  
  .container {
    border-radius: 5px;
    font-weight: 100;
    background-color: #E1E8FA;
    padding: 20px;
  }


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

    .page {
        flex-direction: row;
    }

    .personalia {
        order: -1;
    }

    .profile {
        order: 1;
    }

    .person-name{
        order: -1;
    }

    .person-logo{
        margin: 0px 0px 30px 20px;
        top: 20px
    }

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

    .information{
        width: 400px;
    }
    

}


/*student uitwerking*/

