html,
body {
    height: 100%;
    margin: 0;
}

@font-face {
    font-family: 'fenice';
    src: url('fenicestd-oblique.otf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    font-feature-settings: "ss01" on;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #777;
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ellipse {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #FCD720;
    border-radius: 50%;
    filter: drop-shadow(6px 6px 0px black);
    z-index: 0;
}

.seinfeld {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #E30922;
    text-shadow: 4px 4px 0px black;
    font-family: 'fenice';
    font-size: 22em;
    transform: scaleX(63%) translateX(-1.5rem) translateY(-1.2rem);
    letter-spacing: -1.2rem;
    white-space: nowrap;
}

.seinfeld:focus {
    outline: none !important;
    box-shadow: none !important;
}

#toggle,
#sound-toggle {
    background: #FCD720;
    padding: 0.5em 1em;
    font-size: 1rem;
    color: #E30922;
    font-weight: bold;
    border: none;
    border-radius: 100%;
    filter: drop-shadow(2px 2px 0px black);
    cursor: pointer;
    z-index: 1000;
}

#toggle:active,
#sound-toggle:active {
    background: #F79F00;
    color: #BC0000;
}

#footerbuttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    z-index: 9999;
}