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

.personalia {
  background-color: #e7e8ec;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.link-bar {
  width:50%;
  height:10%;
  margin-top:0;
  align-items:center;
}
.linkedin-logo {
  width:65px;
  height:65px;
  display:block;
  margin:auto;
}

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

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

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

.profile-content__category-title {
  color: rgba(95, 42, 116, 0.96);
}

.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: #411952f5;
  margin-top: 0px;
  font-size: 14px;
}

.container {
  display: flex;
  flex-direction: column;
  font-family: Arial;
}
.profile-content__description {
  font-size:18px;
  margin: 8px 0 0 0
}

/* form section */
.contact-bar{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-button{
  padding: 10px 40px;
  background-color: #8e44ad; /* Submit button background color */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-button:hover{
  background-color:  rgba(160, 105, 182, 0.96);
}
.form-contactpagina {
  width: 90%;
  padding: 0 0 0 0px;
}

.form-contactpagina label {
  font-weight: bold;
  font-size: 18px;
}

.form-contactpagina__inputelement {
  margin-bottom: 15px;
  flex-direction:column
}

.form-contactpagina__inputelement label {
  margin-bottom: 5px;
}

.form-contactpagina input[type="text"],
.form-contactpagina input[type="tel"],
.form-contactpagina input[type="email"],
.form-contactpagina textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.form-contactpagina input[type="text"]:focus,
.form-contactpagina input[type="tel"]:focus,
.form-contactpagina input[type="email"]:focus,
.form-contactpagina textarea:focus {
  outline: none;
  border-color: #8e44ad; /* Change border color on focus */
}

.form-contactpagina input[type="submit"] {
  padding: 10px 20px;
  background-color: #8e44ad; /* Submit button background color */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-contactpagina input[type="submit"]:hover {
  background-color: #6c3483; /* Darker background color on hover */
}


/* GDPR section */
.gdpr-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  background-color:white;
  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:  #8e44ad;
  padding: 10px;
  color:white;
  border-radius: 10px;
  border: 1px solid gray;
  transition: background-color 0.3s ease;
}

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

.gdpr-consent__button--reject {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid gray;  
  transition: background-color 0.3s ease;

}
.gdpr-consent__button--reject:hover {
  background-color: rgb(216, 216, 216);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid gray;
}
.hide{
  display: none;
}

.show{
  display: block;
}

/* pc only */
@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;
  }
}