html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: white;
}

body {
    background-image: url('idiot-country-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.3);
    /* Slight dark overlay for readability */
    padding: 2rem;
    border-radius: 10px;
}

h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

p {
    font-family: 'Special Elite', cursive;
    font-size: 2rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

header {
    margin-bottom: 2rem;
}

main {
    padding: 1rem;
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive adjustments for tablets and mobile devices */
@media (max-width: 768px) {
    .hero-text {
        padding: 1.5rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    p {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 1rem;
        border-radius: 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.5rem;
    }
}