:root {
  --red: #F00500;
  --blue: #000cf0;
  --grey: #72749E;
  --yellow: #F0C000;
  --green: #00F04E;
  --purple: #7415EB;
}

* {
  box-sizing: border-box;
}

html {
  background-color: #363636;
  /* background-color: var(--grey); */
  scrollbar-width: none;
}

body {
  display: flex;
  flex-direction: column;
}

body::-webkit-scrollbar {
  display: none;
}

.header {
  /* color: #2312b2; */
  color: var(--blue);
  /* position: fixed; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  text-align: center;
  z-index: 2;
}

.header h1 {
  font-size: 4rem;
  margin-top: 1%;
}

.mainLayerContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 5%;
}

.firstPage {
  width: 100%;
  /* height: 90%; */
  height: 90vh;
}

.mainContent {
  /* position: absolute; */
  width: 90%;
  height: 90%;
  left: 5%;
  margin-left: auto;
  margin-right: auto;
  /* top: 5%; */
  border-color: #2e17b3;
  /* border: solid; */
  display: flex;
  flex-direction: row;
}

.content--left {
  width: 25%;
  display: flex;
  flex-direction: column;
  /* margin-left: 1%; */
  /* margin-top: 1%; */
}

.myFace {
  /* display: block; */
  display: flex;
  /* max-width: 100%; */
  height: 100%;
  width: 100%
}

img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  /* margin-left: auto;
  margin-right: auto; */
  margin: auto;
  /* margin-top: 20%; */
}

.bio {
  /* width: 25%; */
  /* height: 45%; */
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  /* color: #1235B3; */
  color: white;
  margin: auto;
  font-size: 1.5rem;
  text-align: justify;
}

.bio a {
  /* color: #1235B3; */
  color: white;
}

.resumeContent {
  width: 100%;
  /* height: 90vh; */
  display: flex;
  flex-direction: column;
}

.resumePage {
  height: 120vh;
  /* overflow:visible; */
  width: 100%;
}

.resumeTitle {
  text-align: center;
  width: 100%;
}

.resumeTitle h1 {
  font-size: 2.5rem;
  color: var(--blue);
}

a {
  text-decoration: none;
}



.resumeTimeline {
  position: relative;
  /* max-width: 1200px; */
  margin: 0 auto;
  width: 100%;
}

.resumeTimeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -6px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}


/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* The actual content */
.container-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

.container-content h2 {
  text-align: center;
  color: var(--red);
}

.container-content h3 {
  text-align: center;
}

.right {
  left: 50%;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -19px;
}


.left {
  left: 0;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.left::after {
  right: -13px;
}





.footer {
  width: 100vw;
  left: 0;
  height: 10vh;
}

.footer-content {
  height: 50%;
  width: 100%;
  margin-top: auto;
}

.linkedInLink {
  width: 10%;
  height: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.linkedInLink img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .resumeTimeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }

  .mainContent {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
  }

  .content--left {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .myFace img {
    max-width: 25%;
  }
}
