/* Structure */

body {
  font-family: Roboto, Georgia, Times, "Times New Roman", serif;
  color: #000000;
  display: flex;
  flex-direction: column;
}

@media (max-width: 912px) {
  body {
    font-size: 110%;
  }
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 30px 15px 30px;
}

@media (max-width: 912px) {
  .left_column {
    width: 21%;
  }

  main {
    display: flex;
    margin: 15px 30px 30px 15px;
  }

}

footer {
  font-weight: normal;
  color: gray;
  text-align: center;
  text-decoration: none;
  margin: 15px 30px 30px 30px;
}

@media (min-width: 912px) {

  main {
    display: flex;
    justify-content: center;
    margin: 15px 30px 30px 15px;
  }


  .left_column {
    width: 200px;
  }

  .right_column {
    width: 712px;
  }
}

a {
  font-weight: normal;
}

a:link {
  color: #3C3C3C;
}

a:visited {
  color: #3C3C3C;
}

a:hover {
  color: #A2A2A2;
}

a:active {
  color: #3C3C3C;
}

p {
  margin-top: 7px;
  margin-bottom: 7px;
}

h3 {
  margin-top: 9px;
  margin-bottom: 9px;
}

.title1 {
  font-size: 18.72px;
  margin-top: 9px;
  margin-bottom: 9px;
  font-weight: bold;
}

.title2 {
  font-size: 16px;
  margin-top: 9px;
  margin-bottom: 9px;
  font-weight: bold;
}

/* Header */

#profile_pic {
  border-radius: 50%;
  width: 75%;
  height: 75%;
}

@media (max-width: 912px) {
  .name_block {
    display: flex;
    align-items: center;
    font-size: 150%;
    font-weight: normal;
    color: #000000;
    /* text-align: right; */
    /* margin-top: 5px;
  margin-bottom: 5px; */
    /* border-bottom: thin solid #000000; */
    gap: 8px;
  }
}

@media (min-width: 912px) {
  .name_block {
    display: flex;
    align-items: center;
    font-size: 250%;
    font-weight: normal;
    color: #000000;
    /* text-align: right; */
    /* margin-top: 5px;
  margin-bottom: 5px; */
    /* border-bottom: thin solid #000000; */
    gap: 8px;
  }
}

.logo {
  transform: translateY(2.4px);
  margin-left: 8px;
}

@media (min-width: 912px) {
  .logo {
    display: none;
  }
}

@media (min-width: 912px) {
  .name_block::before {
    margin-right: 48px;
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: black;
  }
}

/* Index */

@media (min-width: 912px) {
#index {
  text-align: right;
  padding-right: 35px;
}
}

#index a.selected {
  font-weight: bold;
}

#index a {
  text-decoration: none;
}

/* Main Content */

.content {
  font-size: 100%;
  font-weight: normal;
  text-align: left;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 0px;
  margin-top: 0px;
}

/* Footer */

.language-switcher a {
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
}

.language-switcher a:hover {
  background-color: #e0e0e0;
}

.language-switcher a[aria-current="page"] {
  /* font-style: italic; */
  font-weight: bold;
}

@media (max-width: 912px) {
  #index {
    font-size: 110%;
    text-align: center;
  }

  main .left_column {
    height: 100%;
    /* 100% Full-height */
    width: 0%;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: white;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 100px;
    /* Place content 60px from the top */
    transition: 0.2s;
    /* 0.5 second transition effect to slide in the sidenav */
  }

}

/* Position and style the close button (top right corner) */
#table_of_content .closebtn {
  font-size: 180%;
}

@media (min-width: 912px) {
  #table_of_content .closebtn {
    display: none;
  }
}

body header .right_column a.hidden_link{
  color: inherit;
  text-decoration: inherit;
}

#linkedin-link{
  height: 1em;
  vertical-align: middle;
}