@font-face {
    font-family: SimpleSquare;
    src: url(./ST-SimpleSquare.woff2);
}

@font-face {
    font-family: Futura;
    src: url(./Futura.ttf);
}

body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: 'SimpleSquare';
    overflow: hidden;
    min-width: none;
}

#logo {
    position: absolute;
    top: 2%;
    left: 2%;
    background: black;
    color: rgb(233, 233, 233);
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    font-size: min(6vw, 6em);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 24px rgb(0, 0, 0);
    letter-spacing: -0.11em;
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


#content #error {
    margin-left: 1vh;
    font-size: min(6vw, 7em);
    height: 100%;
    display: block;
    color: rgb(233, 233, 233);
    text-shadow: 0px 4px 24px rgb(0, 0, 0);
}

#content #divider {
    background-color: rgb(233, 233, 233);
    margin-left: 6vw;
    margin-right: 6vw;
    width: 0.5vw;
    height: min(50vh, 30vw);
    box-shadow: 0px 4px 24px rgb(0, 0, 0);
}

#content #reaction {
    margin-right: 1vh;
    box-shadow: 0px 4px 24px rgb(0, 0, 0);
}

#content #reaction #liveReaction {
    height: min(3vw, 4em);
    display: flex;
    border-bottom: 0.2vw solid rgb(233, 233, 233);
}

#content #reaction #liveReaction #emote {
    height: 100%;
    width: 100%;
    color: rgb(233, 233, 233);
    background-color: rgb(156, 0, 0);
    font-family: Futura;
    font-size: min(2vw, 4em);
    padding-left: 0.2em;
    padding-right: 0.2vw;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content #reaction #liveReaction #emote img {
    margin-left: 0.1em;
    margin-right: 0.1em;
}

#content #reaction #emote {
    display: flex;
    justify-content: center;
    border: 0.2vw solid rgb(233, 233, 233);
    background-color: rgb(233, 233, 233);
    ;
}

#content #reaction #emote #img {
    width: 100%;
}

#content #reaction #emote #img img {
    width: 100%;
    height: auto;
}