body {
    margin: 0;
    font-family: Georgia, serif;
    background: #f8f4ec;
    color: #3a332c;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 2rem;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1rem;

    color: #b87333;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.buttons a {
    text-decoration: none;

    border: 2px solid #b87333;

    color: #b87333;

    padding: 12px 24px;

    border-radius: 999px;

    transition: 0.3s;
}

.buttons a:hover {
    background: #b87333;
    color: white;
}
