* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
header, footer {
    color: #00695c;
    padding: 1rem;
    text-align: center;
}
nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #00695c;
    font-weight: 500;
}
h2 {
    font-size: large;
}

body {
    background: linear-gradient(to right, #ffffff, #ffffff);
    color: #333;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

a.button {
    display: block;
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

a.button:hover {
    background-color: #00695c;
}

@media (max-width: 600px) {
    h1 {
    font-size: 2rem;
    }

    a.button {
    font-size: 1rem;
    padding: 12px 16px;
    }
}