* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    text-align: center;
    min-height: 100dvh;
    padding: 60px 20px 0;
    background-image: url(/images/tacavilavelha.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
}

.hero {
    background: rgba(255, 255, 255, 0.05);
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    padding: 1rem 2rem;
    backdrop-filter: blur(2px);
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.hero-text {
    padding: 2rem;
    border-radius: 10px;
    max-width: 90%;
    width: 100%;
}

#temperatura {
    font-size: 4.6rem;
    font-weight: bold;
}

p {
    font-size: 1.2rem;
}

#sensacao {
    font-size: 1.4rem;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    max-width: 500px;
    width: 90%;
    padding: 1rem 2rem;
    border-radius: 16px;
    margin-bottom: 20px;
}

.dev a {
    color: #fff;
    text-decoration: none;
    margin: 0 4px;
}

.dev a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.8;
}

.creditos-foto {
    font-size: 0.8em;
    margin-top: 5px;
}

@media (max-width: 600px) {
    body {
        padding: 20px 10px 0;
    }

    .hero {
        max-width: 100%;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-text {
        padding: 1rem;
    }

    #temperatura {
        font-size: 3rem;
    }

    p, #sensacao {
        font-size: 1rem;
    }

    footer {
        font-size: 0.9rem;
        padding: 10px;
    }

    .creditos-foto {
        font-size: 0.7rem;
        text-align: center;
    }
}