/* Global page layout */
body {
    font-family: Arial, sans-serif;
    background: #1e1e1e;
    color: #f0f0f0;
    text-align: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Title styling */
h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Homepage title override */
.home-title {
    font-family: 'Pacifico', cursive;
    font-size: 64px;
    margin-bottom: 40px;
    color: #4CAF50;
}

/* Button styling */
a.button {
    display: inline-block;
    padding: 14px 28px;
    background: #4CAF50;
    color: white;
    font-size: 22px;
    text-decoration: none;
    border-radius: 12px;
    width: auto;
    align-self: center;
    transition: background 0.2s ease;
}

a.button:hover {
    background: #45a049;
}

/* List styling */
ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

li {
    margin: 20px 0;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 20px 0;
    font-size: 14px;
    color: #aaaaaa;
    opacity: 0.8;
}