* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff5f5; /* Tom suave de vermelho claro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #8b0000; /* Tom escuro de vermelho */
}

.welcome-container {
    text-align: center;
    background-color: #ff4d4d; /* Fundo vermelho vivo */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    color: #ffe6e6;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

button {
    padding: 12px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #8b0000; /* Tom de vermelho escuro */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #a83232; /* Tom de vermelho mais claro ao passar o mouse */
}
