:root {
    --window-background: rgb(32, 32, 32);
    --text: rgb(238, 234, 224);
    --red: rgb(255, 0, 0)
}

body {
    margin: 0;
    background-color: black;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    font-family: "Syne Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

#compressionSlider {
    position: fixed;
    z-index: 10;
    bottom: 10px;
}

#main {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.window {
    background-color: var(--window-background);
}

.flex-body {
    display: flex;
    width: 500px;
    height: 400px;
    align-items: center;
    gap: 20px;
    max-width: 80vw;
    max-height: 80vh;
}

.window img {
    flex: 1 1 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    box-shadow:
        inset -1px -1px #fff,
        inset 1px 1px grey,
        inset -2px -2px #dfdfdf,
        inset 2px 2px #0a0a0a;
    max-height: 80vh;
}

.flashing {
    animation: flashing steps(1) 1s infinite;
}

@keyframes flashing {
    0% {
        filter: invert();
    }

    50% {
        filter: unset;
    }

    100% {
        filter: invert();
    }
}

.popupHolder {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#manifesto {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 40px 0 40px;
}

#manifesto p {
    margin: 0;
    text-align: center;
    /* transition: all ease-in-out .3s; */
}

#manifesto p:hover {
    cursor: pointer;
    filter: brightness(5);
    /* transition: all ease-in-out .1s; */
}

#name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#name p {
    font-size: 30px;
    margin: 0;
}

.red {
    background: url(images/text.gif) center;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#screamer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(images/screamer.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

button {
    font-family: "Syne Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

#mute {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

#mute img {
    height: 20px;
}

.bottomButtons {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.logo {
    height: 300px;
    max-width: 80vw;
    aspect-ratio: 2/1 !important;
}

.buttons {
    display: flex;
    width: 600px;
    max-width: 80vw;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: groove white;
}

.button img {
    height: 100px;
    aspect-ratio: 1/1;
}

#timer {
    font-size: 20px;
    font-family: "Syne Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

#signature {
    position: fixed;
    height: 100vh;
    writing-mode: vertical-lr;
    left: 10px;
    top: 0;
    color: white;
    display: flex;
    justify-content: center;
}

#signature a {
    background-color: rgba(0, 0, 0, .5);
}

@media (orientation: portrait) {

    .flex-body {
        display: flex;
        width: 500px;
        height: 400px;
        align-items: center;
        gap: 20px;
        max-width: 80vw;
        max-height: 80vh;
    }

    body {
        margin-bottom: 50px;
    }

    #mute {
        font-size: 10px;
    }



    /* .window img {
        flex-grow: 1 0 0;
        width: 100px;
    } */
}