/* General Color and Font Theme */
html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden; 
    overflow-y: scroll;
}
body {
    background-color: #282828;
}
html,body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
h1 {
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: center;
}
h2 {
    color: #c8a2c8;
    font-family: "Poppins", sans-serif;
    font-size: 250%;
    text-align: center;
}
h3, h4, h5, h6, p, a {
    font-family: "Poppins", sans-serif;
    text-align: center;
    color: white;
}
p {
    text-align: left;
    word-wrap: break-word;
} 

/* Landing Page */
#vantajs {
    width: 100%; 
    height: 100vh;
    position: absolute;
    background-size: cover;
}
#content{
    min-height: 100vh;
}
#content h2 {
    font-size: 48px;
}

/* Landing Page Button */
.landing-button {
    display: inline-block;
    width: 200px;
    padding: 8px;
    color: white;
    border: 1.5px solid white;
    border-radius: 50px;
    transition: 0.5s;
}
.landing-button:hover, .landing-button:active {
    background: #c8a2c8;
    border: 1.5px solid #c8a2c8;
    color: #350052;
    text-decoration: none;
}
#content .content-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}  

/* Header */
#header {
    background-color: #282828;
    height: 55px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 997;
}
#header #name h1 {
    float: left;
    padding: 0 8px 8px 8px;
    font-size: 16px;
}

/* Navigation Bar */
.nav-header {
    background-color: #282828;
}
.nav-menu {
    list-style: none;
}
.nav-menu ul {
    position: absolute;
    z-index: 50;
}
.nav-menu li {
    position: relative;
    float: left;
}
.nav-menu a {
    padding: 0 8px 8px 8px;
    text-decoration: none;
    display: inline-block;
    color: white;
}
.nav-menu a:hover {
    content: "";
    border-bottom: solid 1.5px #c8a2c8;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* Scroll Bar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #282828;
}  
::-webkit-scrollbar-thumb {
    background: #c8a2c8;
    border-radius: 6px;
    height: 10px;
} 
::-webkit-scrollbar-thumb:hover {
    background: #947b94;
}

/* About Section */
#about {
    background-color: #525252;
    color: white; 
    min-height: 100vh;
}
#projects {
    color: white; 
    min-height: 100vh;
}
#headshot {
    display: block;
    margin: auto;
    height: 50vh;
}

/* Education Section */
#education {
    color: white; 
    min-height: 100vh;
}
#education p {
    text-align: center;
}

/* Experience Section */
#experience {
    background-color: #525252;
    color: white; 
    min-height: 100vh;
}

/* Project Section */
#projects {
    color: white; 
    min-height: 100vh;
}

/* Contact Section */
#contact {
    background-color: #525252;
    color: white; 
    min-height: 100vh;
}
.icon {
    font-size: 100px;
    display: inline-block;
    margin: 2%;
    color:white;
    text-decoration: none;
}
.icon:hover {
    color: #c8a2c8;
}

/* Collapsible Sections */
#education .collapsible {
    background-color: #282828;
}
#experience .collapsible {
    background-color: #565656;
}
.collapsible {
    color: white;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: center;
}
.collapsible:focus,
.collapsible:active {
      outline: none;
      box-shadow: none;
}
.active, .collapsible:hover {
   color: #c8a2c8;
}
.content {
    display: none;
    overflow: hidden;
}