.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem;
}

.message {
    font-family: Arial, sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

button:hover {
    background-color: #45a049;
}

button:active {
    transform: translateY(1px);
}
