@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@200;300;400;500;700;900&display=swap');

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #393939;
}

::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;
}

html {
    scrollbar-color: #ffffff #393939;
    scrollbar-width: thin;
}

body {
    position: relative;
    margin: 0;
    font-family: "Source Sans Pro";
    color: black;
    background: #ffffff;
    font-weight: 200;
    text-shadow: 0px 0px 5px white;
    width: 100%;
    height: 3234px; /*388.67+128+384+410+384+162.67+384+268.67+384+212+128*/
}

.section{
    position: absolute;
    font-family: "Space Mono";
    font-size: 24px;
    width: 960px;
}
.section-left{
    left:128px;
    text-align: left;
}
.section-right{
    right:128px;
    text-align: right;
}

/* Section spacing guide: 128px (initial) + (384px margin per section) */

#section-one{
    top:128px;
}

#section-two{
    top:900.67px; /*388.67+128+384*/
}

#section-three{
    top:1694.67px; /*388.67+128+384+410+384*/
}

#section-four {
    top: 2241.34px; /*388.67+128+384+410+384+162.67+384*/
}

#section-five {
    top: 2894px; /*388.67+128+384+410+384+162.67+384+268.67+384*/
}

.section-title{
    font-size: 48px;
    font-family: "Rubik";
    font-weight: 700;
}

#background-shape-1{
    position: absolute;
    left: 300px;
    top:300px;
    border-radius: 512px;
    width:1024px;
    height:1024px;
    background: linear-gradient(222deg, rgba(255,255,255,0) 0%, hsl(239deg 29% 51%) 100%);
}

#background-shape-2{
    position: absolute;
    right: 200px;
    top:1824px;
    border-radius: 0px;
    width:512px;
    height:512px;
    background: linear-gradient(12deg, rgba(255,255,255,0) 0%, hsl(239deg 29% 51%) 100%);
}

#background-shape-3{
    position: absolute;
    right: 776px;
    top:1824px;
    border-radius: 0px;
    width:256px;
    height:256px;
    background: linear-gradient(12deg, rgba(255,255,255,0) 0%, hsl(239deg 29% 51%) 100%);
}

#home-link {
    position: absolute;
    top: 40px;
    right: 40px;
}

#home-link-a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
}

#home-icon {
    width: 32px;
    height: 32px;
}

@keyframes loadIn {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes loadOut {
    from{
        opacity: 1;
        transform: translateY(0px);
    }
    to{
        
        opacity: 0;
        transform: translateY(-10px);
    }
}