body {
    --color: #8626b2;
    --color-text: white;

    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
}

body::backdrop,
body:fullscreen {
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100vw;
}

.alt-logo {
    display: block;
    margin: auto auto 2rem auto;
    max-width: 90vw;
    width: 300px;
}

.alt-fullscreen {
    align-items: center;
    background: var(--color);
    border: 2px solid transparent;
    color: var(--color-text);
    display: flex;
    font-size: 1.25rem;
    font-weight: bold;
    gap: .5rem;
    inset: -5rem auto auto 1rem;
    position: fixed;
    padding: 1rem;
    transition: inset .25s ease;

    &.visible {
        inset: 1.5rem auto auto 1rem;
    }

    &:focus,
    &:hover {
        border-color: white;
        cursor: pointer;
    }

    &:active {
        border-color: rgb(255, 255, 255, .75);
        filter: saturate(1.5);
    }
}

.alt-fullscreen img {
    animation: scale 1s infinite linear;
    height: auto;
    width: 22px;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


