* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

.black {
    color: #000;
}

.red {
    color: #dc3545;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    justify-content: space-between;
    text-align: center;
    padding: 20px 0;
}

header .logo {
    margin: 0 auto;
}

header img {
    width: 150px;
}

body {
    background-image: url("/img/background2.jpg");
    background-size: cover;
    background-position: center;
}

main {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Define a altura mínima como 100% da viewport */
    text-align: center; /* Opcional: centraliza o texto */
}

.text {
    background: #FFF;
    padding: 15px;
    border-radius: 10px;
}

h2, h3, p {
    text-align: center;
}

.title {
    margin-bottom: 20px;
}