html, body {
    background: #454545;
    color: #fafafa;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

h1 {
    font-size: 2rem;
    text-align: center;
    max-height: 5vh;
    margin: 0;
    margin-bottom: 1rem;
}

#reset {
    position: absolute;
    right: 1rem;
    bottom: 0.1rem;
}

.hat {
    position: absolute;
    max-width: 8rem;
    max-height: 8rem;
    padding: 0px;
    margin: 0px;
    bottom: 10px;
}

#top-hat {
    right: 20vw;
}
#santa-hat {
    right: 40vw;
}
#party1-hat {
    right: 60vw;
    scale: 69%;
}
#party2-hat {
    right: 80vw;
}

#eepy {
    max-width: 85vw;
    max-height: 50vh;
    transition: max-height 0.1s linear, max-width 0.1s linear;
}

#eepy.squish {
    max-height: 45vh;
    max-width: 80vw;
}

#eepy.squishable {
    cursor:pointer;
}

#eepy.boing {
    position: absolute;
}

.pat-counter {
    font-size: 2rem;
    text-align: center;
    transition: display 0s, opacity 0.5s linear;
}

.pat-milestones {
    font-size: 1rem;
    text-align: center;
    transition: display 0s, opacity 0.5s linear;
}

.hidden {
    display: none;
    opacity: 0;
}

@media (min-width: 780px) {
    h1 {
        font-size: 3rem;
        max-height: 10vh;
        margin-bottom: 0;
    }
}
