
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;700;800&family=Nunito:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0;
}

body {
    height: 100%;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #29b6f6;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 24px;
}

.box {
    max-width: 720px;
    width: 100%;
    text-align: left;
}

.box h1 {
    font-family: 'Baloo 2', 'Comic Sans MS', cursive, sans-serif;
    font-weight: 800;
    color: #1b5e20;
    font-size: 5rem;
    line-height: 1.1;
    margin: 0;
}

.box h1 + h1 {
    color: #29b6f6;
}

.box h1:last-of-type {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 18px;
}

.box p {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 24px 0 36px;
}

.box button {
    border: none;
    border-radius: 999px;
    background-color: #1f2a1c;
    color: #ffffff;
    font-family: 'Baloo 2', 'Comic Sans MS', cursive, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    cursor: pointer;
    transition: transform 0.12s ease, filter 0.12s ease;
}

.box button:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.box button:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .box {
        text-align: center;
    }

    .box h1 {
        font-size: 2.1rem;
    }

    .box p {
        font-size: 0.95rem;
    }
}