/*mobile version*/

.page {
  display: flex;
  flex-direction: column;
  font-family: Poppins-Semibold, sans-serif;
}

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

}

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

.profile-content {
  display: flex;
  align-items: center; /* Center vertically within the container */
  margin-top: 20px;
  width: 100%;
  /*background-color: #fff;*/
}

.person-logo {
  border: 5px solid #3a3c3e;
  border-radius: 10%;
  width: 15%;
  animation: glow 3s ease alternate;
  padding: 3px;
}

.github-logo {
  width: 1.5%;
  margin-left: auto;
  padding: 2px;
}

.profile-content-right {
  font-size: 20px;
  margin-top: -90px;
  margin-left: auto; /* Add this to push the content to the far right */
}

.profile-content-left {
  font-size: 20px;
  margin-left: 20px; /* Add space between the picture and content */
  margin-top: -75px;
}

.profile-content__category-title {
  color: rgb(58, 60, 61);
  margin: 0;
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Clip the overflow */
  text-overflow: ellipsis; /* Show ellipsis (...) if text overflows */
}

.profile-content__category-subtitle {
  color: rgba(58, 60, 61);
  margin-top: 20px;
}

.profile-content__category-subtitle-right {
  color: #3a3c3e;
  margin-top: 20px;
  display: flex;
  flex-direction: column; /* Stack the text lines vertically */
  align-items: flex-end; /* Align content to the right */
}

.address {
  margin-top: -40px;
  white-space: nowrap;
  display: flex;
  justify-content: space-between; /* Push the elements apart */
  align-items: center; /* Vertically center the content */
}

.profile-content__category-address {
  font-size: 15px;
  color: #3a3c3e;
  display: inline;
  margin-left: 200px;
}

.profile-content__category-github {
  font-size: 15px;
  color: #3a3c3e;
  display: inline;
}

.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: rgba(211, 139, 0, 0.96);
  margin-top: 0px;
  font-size: 14px;
}

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

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

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

  .custom-line {
    height: 2px; /* Adjust the line thickness as needed */
    background-color: rgba(211, 139, 0, 0.96); /* Line color */
    margin: 20px 0; /* Adjust the margin to control the space around the line */
    width: 880px;
    align-items: flex-end; /* Align content to the right */
    margin-left: auto;
    margin-top: -30px;
  }


}


/*student uitwerking*/
