/* Reset e estilo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #000000; /* fundo preto */
    color: #f5f5dc; /* bege claríssimo */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px; /* espaço entre elementos */
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1.5rem;
}

.image-container {
    width: 250px;  /* tamanho fixo da imagem */
    height: 250px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-height: 500px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .image-container {
        width: 150px;
        height: 150px;
    }
}
