html, body {
    width:100%;
    height:230%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
}

/* container including all the sections */
.container {
    padding-top: 3%;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    perspective: 8px;
    background-image: url('Images/Bkgrnd.svg');
    background-repeat: none;
    background-size: cover;
    text-align: center;
}


/* navigation bar css */
.navbar {
    position: fixed;
    width: 100%;
    height: 4%;
    background-color: white;
    margin: 0;
    padding: 2vh 0vh 2vh 3vh;
    font-size: 3vmin;
    z-index: 10;
}

.navbtn {
    display: inline;
    float: left;
    padding: 0vw 5vw 0vw 5vw;
}

/* first section with profile and description */
.welcome {
    padding: 2%;
    margin: 1%;
    margin: 20vh auto 20vh auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-radius: 10%;
    font-size: 3.5vmin;
    width: 70%;
    height: 60vh;
}


.info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow-wrap: normal;
    width: 70%;
    margin-top: auto;
    margin-right: 3vw;
}

/* specific profile image */
.imgWelcome {
    width: 30vw;
    height: 30vh;
    font-size: 0vh;
    margin: 2%;
    
}

/* class for the text with the name */
.letterAnimate{
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: .05em;
    display: inline-block;
    opacity: 0;
    animation: 
      typing 2.3s steps(68, end),
      blink-caret 1s step-end infinite;
      animation-fill-mode: forwards;
  }

/* class for each section title */
.titlesection {
    font-size: 5vmin;
    color: white;
}

/* projects section */
.projects {
    border-radius: 4%;
    box-shadow: 0px 0px 14px 1px rgba(255, 255, 255, 0.192);
    padding: 1% 4% 4% 4%;
    margin: 0vh auto 20vh auto; 
    width: 45vmax;
    height: 84vmin;
}

.projectsdiv {
    height:100%;
    width:100%;
}
/* contacts section */
.contacts{
    margin: 0vh auto 25vh auto;
    width: 30%;
}

/* resume section */
.resume {
    padding: 4%;
    margin: 0vw auto 65vh auto;
    border-radius: 4%;
    width: 50%;
    display: flex;
    flex-direction: row;
    color: white;
    justify-content: center;
}

/* divider included so hyperlink links to an offset of each page */
.anchor {
    height: 20vh;
}

/* resume container for button*/
#resumediv {
    /* display: none; */
    text-align: center;
    padding-left: 4%;
}

.titlesection {
    color: white;
    font-size: 54min;;
}


/* continuation of typing animation css */
  @keyframes typing {
    0% { 
        width: 0; 
        opacity:0;
    }
    1% {
        opacity:1;
    }
    100% { 
        width: 100%; 
        opacity:1;
    }
  }


/* formatting for links */
a{
    color: rgb(5, 58, 131);
    text-decoration: none;
}

/* specific image */
#imgWel {
    max-height: 100%;
    max-width: 100%;
    padding: 3%;
    border-radius: 2vmin;
    background-color: rgba(240, 248, 255, 0.497);
}

/* more css for general font color */
a:hover {
    color: rgb(104, 180, 246);
}

p, li {
    color: rgb(149, 185, 236);
}

#name {
    color:white;
    font-size: 5vmin;
}

.break{
    font-size: 1vmin;
}

/* css for the carousel */
.btns{
    display: none;
    flex-direction: row;
    justify-content: space-between;
    z-index: 1;
}

#CSbtn {
    display: flex;
}

form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 3vmin;
    margin: 3vmin auto 0vmin auto;
    overflow: hidden;
}
.tabContent{
    grid-area: sectionb;
    height: 50vmin;
    width: 100%;
    color:rgb(86, 135, 184);
    display: none;
    margin-top: 3vh;
}

.tabs button{
    padding: 2vmin;
    border: thin;
    background-color: rgb(162, 162, 162);
    color: rgb(5, 58, 131);
    color: white;
    outline: none;
    font-size: 2.5vmin;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 2%;
}

.tabs button:hover {
    background-color: aliceblue;
    box-shadow: 0px 0px 9px 3px white;
    color:rgb(63, 119, 145);
}
  
  /* Create an active/current tablink class */
.tabs button.current {
    background-color: aliceblue;
    color:rgb(63, 119, 145);
}
  

.prev, .next {
    color: rgb(63, 119, 145);
    font-size: 5vmin;
    padding: 2vmin;
  }

  .prev:hover, .next:hover {
    color: rgb(192, 219, 243);
  }
  
  .active {
    background-image: rgb(197, 234, 252);
  }
  
  .imgs, .vids {
    object-fit: contain;
    overflow: hidden;
    max-height: 60%;
    max-width: 100%;
    position: relative;
    display: inline;
  }

  #imgs{
      border-width: 1%;
      border-style: solid;
      border-color: rgb(214, 236, 255);
  }
  
  .slide {
    height: 100%;
    width: 100%;
  }

  /* css for text for each slide */
  .weltext{
    color: rgb(5, 57, 129);
  }

  #CSContent {
      display: block;
  }

  .disappearcontent {
      display: none;
  }

  .text{
      margin-top: 2vh;
      color: rgb(159, 232, 252);
      font-size: 2vmin;
  }
  
  .title {
    font-weight: bolder;
    color: aliceblue;
    font-size: larger;
    color: rgb(206, 236, 250)
  }

  .mini{
    font-weight: lighter;
    font-style: italic;
    font-size: smaller;
  }

  .index {
    color: rgb(97, 136, 173);
  }

  /* css for highlight effect in welcome section */
  span {
      background-color: rgba(240, 248, 255, 0.267);
  }

  /* css for special school font */
  .school{
      color: rgba(206, 236, 250, 0.815);
      background-color: transparent;
  }

.text-container{
 margin: 0vw 5vw 0vw 5vw;
}

#resumelink {
    font-size: medium;
    color: aliceblue;
}

#resumelink:hover {
    color: dodgerblue;
}

/* Footer CSS */
footer {
    font-size: small;
    background-color: black;
    color: rgba(255, 255, 255, 0.801);
    text-align: center;
}