body {
    background-color: #fff;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    text-transform: uppercase;
}

.container {
    padding: 20px;
    max-width: 800px;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    font-weight: 900;
}

.suggestion-prefix {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

h2 {
    font-size: 4rem;
    margin: 0 0 4rem 0;
    line-height: 1;
    font-weight: 900;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    background: none;
    border: 3px solid #000;
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 600px) {
    h2 {
        font-size: 2.5rem;
    }
}

