html {
    background-color: var(--color-theme);
}

html, body {
    height: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, button, input {
    font-family: 'Playpen Sans', sans-serif;
    color: var(--color-light);
}
h1 {
    font-size: 120px;
    line-height: 0.9;
}

button {
    min-width: 200px;
    padding: 10px 20px;
    font-size: 32px;
    background: var(--color-accent-1);
    border: none;
    border-radius: 40px;
}
button:hover {
    rotate: -5deg;
}
button:disabled {
    visibility: hidden;
}

body {
    /*padding: 20px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.frame {
    position: relative;
}
.game {
    height: min(66vh, 66vw);
    aspect-ratio: 1 / 1;
    background-color: var(--color-dark);
    border-radius: 40px;
    overflow: hidden;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-anchor {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    top: 100px;
    right: -200px;
}
.feedback {
    display: none;
    padding: 10px 20px;
    font-size: 24px;
    color: var(--color-dark);
    background-color: var(--color-light);
    border-radius: 40px;
}