body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 4rem;
    text-align: center;
    margin: 2rem 0;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff4d4d, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.topnav {
    background-color: #2c2c2c;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.topnav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.topnav a:hover {
    background-color: #ff4d4d;
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.button {
    background-color: #444444;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.button:hover {
    background-color: #ff4d4d;
    transform: translateY(-2px);
}

footer {
    margin-top: auto;
    padding: 1rem;
    background-color: #2c2c2c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #cccccc;
}

footer a {
    color: #ff4d4d;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

p {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: left;
    padding: 1rem 15%;
    margin: 1rem auto;
    max-width: 800px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .topnav a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
        padding: 0.75rem 10%;
    }
}