*{
  font-family: inter, sans-serif;
}

.inter-intro {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body, html {
  background-color: #32483A;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

.left_content {
  flex: 1;
  padding-right: 20px;
  color: #d9dedb;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left_content_inner {
  top: 0;
}

.avatar {
  display: flex;
  width: 66%;
  height: auto;
  border-radius: 50%;
  justify-self: center;
  max-width: 380px;
  border-color: #d9dedb;
  border-style: solid;
  margin-top: 96px;
  margin-bottom: 96px;
}

.wrapper {
  display: flex;
  margin-left: 15%;
  margin-right: 15%;
  justify-content: space-around;
  min-height: 100vh;
  position: relative;
}

.right_content {
  flex: 1;
  padding-left: 20px;
  color: #ffffff;
  overflow-y: auto;
  height: 100%;
  margin-top: 100px;
}

.right_box h1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  color: #ffb876;
}

hr {
  margin-bottom: 48px;
  max-width: 10%;
}

.right_box {
  padding-bottom: 40px;
}

.about_text {
  line-height: 1.6;
  padding: 0px 24px 0px 24px;
  font-size: larger;
}

.job {
  padding: 16px;
  transition: all 0.3s ease-out;
  border-radius: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.job:hover {
  cursor:pointer;
  background-color: #34513a;
  border-color:#d9dedb;
  outline: 20px;
  transition-duration: 0.2s;
}
.job * {
  margin: 6px;
}

.job_desc {
  color: #ffffff;
}

.tag_container {
  display: flex;
  flex-direction: row;
  margin-left: 0;
}

.tag {
  border-radius: 16px;
  outline: 20px;
  background-color: #ffb876;
  border-color:#d9dedb;
  border-width: 5px;
  padding: 8px;
  color: #0c1f0c;
}

.location {
  font-size: 20px;
  font-weight: 500;
  color: #cccccc;
  margin: 0;
}

.title {
  font-size: 24px;
  font-weight: 600;
  color:white;
}

.name {
  text-align: center;
  display: flex;
  justify-self: center;
  text-decoration: none;
  color: #ffb876;
  font-size: 60px;
  font-weight: 700;
  transition: all 0.3s ease-out;
}

.name:hover {
    transform: scale(1.2);
    transition-duration: 0.25s;
    color:#ff9a3b;
}

.role {
  text-decoration: none;
  color: white;
  display: flex;
  font-size: 24px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 8px;
  justify-self: center;
  text-align: center;
}

.job_details {
  display: flex;
  justify-content: space-between;
}

.nav{
  justify-content: center;
  display: flex;
  /* flex-direction: column; */
  flex-flow: row wrap;
  width: 100%;
}

.navlink {
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-out;
  text-decoration: none;
  color:#ffb876;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 5rem;
}

.navlink:hover {
  transform: scale(1.5);
  transition-duration: 0.25s;
  color:#ff9a3b;
}



@media (max-width: 1000px) {
  .wrapper {
    flex-direction: column;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 48px;
    align-items: center;
  }

  .left_content {
    position: relative;
    top: 0;
    padding-right: 0;
    width: 100%;
    margin-bottom: 48px;
    justify-content: center;
    height: auto;
    align-items: center;
  }

  .left_content_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .right_content {
    padding-left: 0;
    width: 100%;
    margin: 0;
  }

  .avatar {
    max-width: 40%;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .name {
    font-size: 48px;
  }
}