body {
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0;
    height: 100%;
}

html {
    margin: 0;
    height: 100%;
    scroll-behavior: smooth; /* this does not work unless I turn it on in browser */
}

h1 {
    font-size: xxx-large;
}

h2 {
    font-size: xx-large;
}

p {
    font-weight: normal;
}

.section {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: large;
    text-decoration: none;
    color: black;
}

.section:hover {
    box-shadow: inset 150px 0 0 0 yellow;
    transition: box-shadow ease-out 1s;
}

.dot-container {
    /*background-color: #eee7d7;*/
    background-color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: black;
    border-radius: 50%;
    pointer-events: none;
}

.near {
    transition: transform 0.5s ease-out;
}

.far {
    transition: transform 0.5s ease-in;
}

.content-container {
    /* font-family: 'Schoolbell', arial, serif;*/
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: default;
    width: 100%;
}

.content {
    margin-top: 12.5vh;
    margin-bottom: 12.5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
}

.header {
    width: 750px;
    background-color: lightcyan;
    color: black;
    border-radius: 15px 75px 75px;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75vh;
}

.projects {
    width: 750px;
    background-color: #cdffcd;
    color: black;
    border-radius: 15px 75px 75px;
    height: fit-content;
    padding-bottom: 100px;
    padding-top: 50px;
}

.project {
    position: relative;
    width: 500px;
    height: 400px;
    margin-top: 50px;
}

.thumbnail {
    width: 500px;
    height: 400px;
    border-radius: 10px;
    border: solid 2px white;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1s;
}

.thumbnail-hover {
    transform: translate(-400px, 0px);
}

.description-container {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    z-index: 2;
    width: 325px;
}


.description {
    text-align: left;
}

.skills-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: wrap;
}

.skill {
    background-color: black;
    border-radius: 10px;
    color: white;
    border: solid 2px black;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.project-github {
    width: 30px;
    height: auto;
    transition: filter 1s;
    margin-top: 15px;
}

.project-github:hover {
    filter: brightness(3);  
}

.experience {
    width: 750px;
    background-color: rgb(255, 223, 164);
    border-radius: 15px 75px 75px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.experience-container {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 400px;
    margin-bottom: 10px;
}

.first-experience {
    margin-top: 50px;
}

.experience-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.experience-info {
    display: flex;
    flex-direction: column;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-circle {
    width: 25px;
    height: 25px;
    border: 2px solid black;
    border-radius: 50%;
}

.timeline-line {
    margin-top: 10px;
    width: 0;
    flex: 1;
    border: 1px solid black;
}

.company-logo {
    max-width: 150px;
}

.about {
    width: 750px;
    height: fit-content;
    background-color: rgb(175,209,226);
    border-radius: 15px 75px 75px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.about-header {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    margin-bottom: 50px;
}

.about-description {
    margin-left: 75px;
    margin-right: 75px;
}

.about-item{
    display: flex;
    flex-direction: row;
}

.about-bold {
    font-weight: bold;
    margin-right: 5px;
}

.image {
    width: 150px;
    height: auto;
    border-radius: 5px;
    margin-right: 50px;
}

.navigation-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    right: 25vw;
}

.navigation {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: lightgray;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 1s;
    align-items: center;
}

.navigation-section {
    text-decoration: none;
    color: black;
    margin-top: 5px;
    margin-bottom: 5px;
}

.navigation-section:hover {
    color: yellow;
}

.disco-ball {
    scale: 25%;
    position: fixed;
    top: -125px;
    right: -100px;
    z-index: 3;
}

.disco-ball:hover {
    animation-name: hue-rotate, sway;
    animation-duration: 2s, 2s;
    animation-timing-function: linear, linear;
    animation-iteration-count: infinite, infinite;
    cursor: pointer;
}

.party {
    animation-name: hue-rotate, sway;
    animation-duration: 2s, 2s;
    animation-timing-function: linear, linear;
    animation-iteration-count: infinite, infinite;
}

@keyframes sway {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0);
    }
}

@keyframes hue-rotate {
    from {
      filter: sepia(1) saturate(5) hue-rotate(0deg);
    }
    to {
      filter: sepia(1) saturate(5) hue-rotate(360deg);
    }
  }


/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */  
::-webkit-scrollbar-thumb {
    background: #888;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}