footer {
    background: var(--black);
    color: var(--white);
    border-image: conic-gradient(from 0deg at 40% 50%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg);
    border-image-width: 5px 0 0 0;
    border-style: solid;
    border-image-slice: 1;
    padding: 3rem;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 5rem;
}

.interaction {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 1000px;
    gap: 3rem;
}

.privacy {
    font-size: var(--fs-xsmall);
}

footer .logo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: .5rem;
}

.wordmark-stacked {
    width: 25rem;
}

.gamechomp{
    width: fit-content; 
    transform: translate(25px, -5px) scale(1.2)
}

.gamechomp-wordmark {
    transform: translatey(2px) scale(1.05);
    fill: var(--white);
    width: 10rem;
}

.copywrite {
    font-size: var(--fs-xsmall);
}

footer .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    column-gap: 1rem;
}

footer li{
    width: fit-content;
}

.email {
    display: grid;
    gap: .5rem;
}

.email-box {
    position: relative;
    box-sizing: border-box;
    display: flex;
    background: var(--white);
    border: 3px solid transparent;
    border-radius: 1rem;
    width: 100%;
}

.email-box:focus-within,
.email-box:hover {
    border: 3px solid #0000;
    border-radius: 1rem;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        conic-gradient(var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg) border-box;
}

.email-input {
    width: 100%;
    background: transparent;
    padding: .75rem;
    font-weight: var(--fw-regular);
}

.email-input:focus {
    outline: none;
}

.submit-arrow {
    color: var(--black);
    background: transparent;
    margin: .75rem;
    transform: scale(1.2);
}

.email-error {
    position: absolute;
    display: none;
    font-weight: var(--fw-regular);
    color: var(--red);
    top: 125%;
    right: 0;
}

.red-border {
    position: relative;
    box-sizing: border-box;
    display: flex;
    background: var(--white);
    border: 3px solid transparent;
    border-radius: 1rem;
    width: 100%;
    border: 3px solid var(--red);
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        var(--red) border-box;
}

@media screen and (max-width: 1000px) {
    footer {
        border-image: conic-gradient(from 0deg at 30% 50%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg);
        border-image-width: 5px 0 0 0;
        border-style: solid;
        border-image-slice: 1;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .interaction {
        display: contents;
    }

    footer .logo {
        justify-content: center;
        align-items: center;
    }

    .gamechomp{
        width: fit-content; 
        transform: translate(0px, -5px) scale(1.2)
    }
    
    footer .links{
        justify-content: center;
    }
}

@media screen and (max-width: 652px) {
    footer {
        border-image: conic-gradient(from 0deg at 10% 30%, var(--dark-green)45deg, var(--dark-purple)45deg 225deg, var(--dark-green)225deg);
        border-image-width: 5px 0 0 0;
        border-style: solid;
        border-image-slice: 1;
        flex-wrap: wrap-reverse;
        justify-content: center;
        align-items: flex-end;
        width: fit-content;
        padding-inline: 1.5rem;
    }
    .wordmark-stacked{
        width: 20rem;
    }
}