body {
    font-family: 'Outfit', sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    background-color: #b42819;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
}

.button:hover {
    background-color: #a02015;
}