* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}

*, html {
    margin:0;
    padding:0;  
}

/****************************************************************************************************/

#main-container {
    width: 100vw;
    max-width: 100%;
}

.option {
    /* height: 12.5vh; */
    /* border-bottom: solid, black; */
    /* border-bottom: 1px solid gray; */
    padding: 10px;
    color: white;
    /* color: #DAF5FF; */
    font-family: 'Work Sans', sans-serif;
    font-size: 1vw;
    text-align: right;
    background-color: lightsteelblue;
}

.option::after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 99%; /* Change this to whatever width you want. */
    padding-top: 2px; /* This creates some space between the element and the border. */
    border-bottom: 1px solid white; /* This creates the border. Replace black with whatever color you want. */
}

.block {
    float: left;
     
    /* height: 100vh; */
    
}



.section {
    width: 100vw;
    max-width: 100%;
    position: relative;  
}

#main-container {
    height: 100vh;
}
#title-image-container {
    border:2px solid white;
    overflow: hidden;
    border-radius: 50%;
    height: 250px;
    width: 250px;

}
/* #title-image {
    
    border-radius: 500px;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
} */

#collage-image {
    height: 100%;
}

.title-section {
    height: 16vh;
    background-color: lightcoral;
    color: white;
    /* text-align: center; */
    position: relative;
    font-size: 35px;
}

.text-section {
    width: 35vw;
    
    height: 95%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 10px;
    padding-top: 15px;
    margin: 7.5px;
    
    font-weight: 400;
    font-size: 2.5vh;
    line-height: 1.58;
    letter-spacing: -0.003em;
    font-family: medium-content-serif-font,Georgia,Cambria,"Times New Roman",Times,serif;
}

.text-left {
    transform: translate(-90%);
}

.text-right {
    transform: translate(10%);
}

#about-me {
    height: 84vh;
}

#experience {
    height: auto;
    background-color: white;
}

#projects {
    height: auto;
    text-align: center;

}

#contact {
    height: 32vh;
    text-align: center;
}

.contact-icon {
    height: 128px;
    width: 128px;
    border-radius: 50%;
    display:inline-block;
    margin: 50px;
}

.contact-image {
    height: 128px;
    width: auto;
}

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#cover-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);    
    z-index: -25;
    color: white;
    text-align: center;    
}

#title-name {
    font-size: 2.5em;
    padding: 10px;
}

#tint {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: -50;
    background-color: black;
    opacity: 0.4;
    max-width: 100%;
}

#background-image {
    background: url("img/gif.gif") no-repeat center center fixed; 
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: -100;
    max-width: 100%;
}

#main-menu {
    width: 12.5vw;
    /* height: 100vh; */
    /* padding: 15px; */
    
    
    
    /* width: 12.5vw;
    height: 100vh; */

    /* background-color: #616163; */
    padding: 2.5vh;
    
}

#menu-container {
    
    background-color: white;
}

#sub-menu {
    width: 15%;
    /* background-color: #FFBFA0; */
    display: none;
}

#content {
    display: flex;
    /* background-color: #DAF5FF; */
    /*font-family: 'Taviraj', serif;*/
}

#landing {
    height: 8.5vw;
}


/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: lightcoral;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* 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 lightcoral;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
  }
  
  /* Place the container to the right */
  .right {
    left: 50%;
  }
  
  /* 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;
  }
  
  /* 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: -16px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: lightcoral;
    position: relative;
    border-radius: 6px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.58;
    letter-spacing: -0.003em;
    font-family: medium-content-serif-font,Georgia,Cambria,"Times New Roman",Times,serif;
    color: white;
    z-index: 0;
  }

  .container-project {
    width: 25%;
    margin: 35px;
    display:inline-block;
    vertical-align: top;
    position: relative;
    
  }

  /* #projects .content {
    
  } */
  
  .clickable {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .content p {
      font-size: 16px;
  }

  .logo {
      width: 100px;
      border-radius: 50%;

  }
/* 
  #tmw-logo {
    border-radius: 50%;
  } */

  .logo-left {
    position: absolute;
    left: -30px;
    top: -14px;
    z-index: 10;
  }

  .logo-right {
    position: absolute;
    right: -30px;
    top: -14px;
    z-index: 10;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
  /* Place the timelime to the left */
    .timeline::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%;
    }
  }