html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
}

#logo {

    position: fixed;
    z-index: 999;
    margin: 80px;
    color: floralwhite;
    mix-blend-mode: difference;
    font-family: "Droid Sans";
    font-size: 30px;
    opacity: 60%;

}

#logo:hover {
    opacity: 100%;
    transition: 0.2s;
}

.work-in-progress {
    color: #ba3535;
    font-weight: bolder;
    rotate: 20deg;
    position: absolute;
    font-size: 14pt;
    top: 10%;
    right: 10%;
    padding: 5px 10px 5px 10px;
    border: #ba3535 solid 2px;
    border-radius: 2px;
    opacity: 50%;
}


body {
    width: 100%;
    background-color: #1c1c1c;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;

}

section.dark {
    color: floralwhite;
    background-color: #1c1c1c;
}

section.light {
    background-color: floralwhite;
    color: #1c1c1c;
    /* background: linear-gradient(0deg, floralwhite 80%, rgba(255, 250, 240, 0)); */
    border-radius: 10px;
}

.container {
    flex: 1;
    max-width: min(1200px, 80%);
    margin-left: auto;
    margin-right: auto;
}


.retro-text {
    text-shadow: .02em .02em 0px lightsalmon, -.01em -.01em 2px moccasin;

}

.line-wrapper {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 7%;
}

.line-wrapper>.line {
    width: auto;
    height: 2px;
    flex: 1;
    opacity: 50%;
}

.line-wrapper>.left {
    background-color: moccasin;
}

.line-wrapper>.right {
    background-color: lightsalmon;
}

.down-arrow {
    border: solid floralwhite;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.button {
    background-color: floralwhite;
    border: solid 1px #7b7b7b;
    padding: 10pt 14pt 10pt 14pt;
    font-family: "Bodoni Moda";
    font-size: 14pt;
    color: #7b7b7b;
    box-shadow: inset -1.5px -1.5px 2px lightsalmon, inset 1.5px 1.5px 2px moccasin, -4px 4px 0px lightsalmon;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
    margin-top: 50px;
}

.button:hover {
    transition: 0.2s;
    scale: 103%;
    background-color: lightsalmon;
    color: floralwhite;
    box-shadow: inset -1.5px -1.5px 6px lightsalmon, inset 1.5px 1.5px 2px moccasin, -4px 4px 0px lightsalmon;
    rotate: -2deg;
}



.button-alt {
    background-color: transparent;
    font-weight: 900;
    color: inherit;
    cursor: pointer;
    font-family: "Droid Sans";
    padding: 20px 70px 20px 70px;
    border: solid 1px rgba(255, 250, 240, 0.158);
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: min(2vw, 12pt);
    opacity: 80%;
}

.button-alt:hover {
    box-shadow: inset -1.5px -1.5px 6px lightsalmon, inset 1.5px 1.5px 2px moccasin;
    /* color: lightsalmon;
    background-color: floralwhite; */
    transition: 0.2s;
    opacity: 100%;

}

.button-alt:active {
    scale: 98%;
    transition: 0.1s;
}

.button-container-flex {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.myVideo {
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 40%;
    z-index: -1;
}

.socials {
    display: flex;
    gap: 20px;
}

.youtube {
    font-size: 25pt;
}

.instagram {
    font-size: 22pt;
}

@keyframes horizontal-shaking {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(1px);
        transform: translateY(1px);
        opacity: 90%;
        scale: 100.1%;
    }

    30% {
        transform: translateX(-2px);
        transform: translateY(1px);
        opacity: 80%;
        scale: 100.1%;
    }



    70% {
        transform: translateX(-2px);
        transform: translateY(-1px);

    }

    75% {
        transform: translateX(1px);
        opacity: 85%;
    }

    100% {
        transform: translateX(0);
    }
}





.noise::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    opacity: 0.03;
    z-index: 1000;
    pointer-events: none;
    background: url(/images/noise.gif);
}

.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#audio {
    width: min(350px, 100%);
}