*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family:  neue-haas-grotesk-display, sans-serif;   
}

html, body{
    background-color: black;
    width: 100%;
    height: 100svh;
}

canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    /* background-color: red; */
}
body{
    position: relative;
    &:after {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: url('./the-slashes.svg') no-repeat center center;
        background-position: 30% 0;
        background-size: cover;
        z-index: 1;
        mix-blend-mode: darken;
    }
    &:before {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.36) 44%, rgba(0, 0, 0, 1) 100%);
        z-index: 2;
    }
    &.option-b {
        &:after {
            background: url('./hero-image.jpg') no-repeat center center;
            mix-blend-mode: normal;
            background-size: cover;
        }
    }
}
header {
    position: relative;
    z-index: 3;
    height: 100vh;
    padding: 3vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    align-items: flex-end;
    div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 2vw;
        img {
            width: 12vw;
        }
    }
    @media only screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 20px;
        padding: 20px;
        div {
            gap: 20px;
            img {
                width: 200px;
            }
        }
    }
}
h1 {
    font-size: 4.7vw;
    font-weight: 600;
    line-height: 1em;
    width: 15ch;
    @media only screen and (max-width: 768px) {
        font-size: 45px;
        width: 100%;
    }
}
p {
    font-size: 1.4vw;
    font-weight: 400;
    line-height: 1.5em;
    @media only screen and (max-width: 768px) {
        font-size: 16px;
    }
}

footer {
    padding: 3vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    flex-wrap: wrap;
    .footer-info {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: 3vw;
        p {
            font-size: 12px;
            opacity: .4;
            margin: 0;
        }
        img {
            width: 15px;
            display: block;
        }
        div {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }
    }
    @media only screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 20px;
        .footer-info {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
        }
    }
}
form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2vw;
    flex-grow: 1;
    div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        flex-grow: 1;
    }
    label {        
        font-family: "pt-mono", monospace;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    input[type="text"], input[type="email"], textarea {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid white;
        padding: 10px 0;
        font-family: "pt-mono", monospace;
        font-size: 12px;
        color: white;
        height: 30px;
        width: 100%;
        &:focus {
            outline: none;
        }
    }
    input[type="submit"] {
        background-color: transparent;
        color: #9EFFC2;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-family: "pt-mono", monospace;
        font-size: 12px;
        border: none;
        padding: 10px 0;
        &:hover {
            cursor: pointer;
            text-decoration: underline;
            color: white;
        }
    }
    @media only screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        justify-content: stretch;
        gap: 30px;
        width: 100%;
        div {
            width: 100%;
        }
    }
}