html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    font-family: "Fredoka", sans-serif;
    color: white;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    box-sizing: border-box;

    transform: translateY(-6vh);
}

.gronn {
    background-color: green;
}

.rod {
    background-color: darkred;
}

h1 {
    font-size: clamp(8rem, 22vw, 18rem);
    margin: 0 0 0.15em 0;
    letter-spacing: 3px;
    line-height: 0.9;
}

p {
    font-size: clamp(1.5rem, 4vw, 4rem);
    margin: 0;
    max-width: 90vw;
}