@import url('https://fonts.googleapis.com/css2?family=Blaka+Ink&family=Montserrat&display=swap');

html, body, * {
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
    width: 100%;
}

body {
    background: #fcc82c url("../img/jank.png");
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    min-width: 650px;
    width: 30%;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px)
}

.container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.container .content {
    text-transform: uppercase;
    text-align: center;
    font-family: "Blaka Ink", cursive;
}

.container .content h1 {
    font-size: 8rem;
}

.container .content h2 {
    font-size: 4rem;
}

.container footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container footer * {
    color: black;
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
}

.container footer .sound-effects,
.container footer .sound-effects a {
    font-size: 0.8rem;
}

.container footer a {
    text-decoration: none;
}

.container footer a:hover {
    text-decoration: underline;
    color: gray;
}