/* Estilos básicos */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5em;
}

img {
    max-width: 100%; /* Torna a imagem responsiva */
    height: auto;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

/* Estilos responsivos para telas menores */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
    
    button {
        width: 100%;
    }
}
