/* Base Styles - Shared Across All Pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Spartan, Roboto, Cantarell, sans-serif;
    background: #f0f0f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body h2 {
    line-height: 3rem;
}

body p {
    font-size: 1.5rem;
}

.container {
    max-width: 70vw;
    max-height: 90vh;
    width: 90%;
    margin: 0 auto;
    padding-top: 2rem;
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-primary {
    background: white;
    color: #333;
    margin-top: 5rem;
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    margin-right: 10px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: scale(1.05);
}
