@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'League Spartan', sans-serif;
    background-color: #f4edea;
    color: #5a3145;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.logo {
    width: 180px;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #924d6f;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
}