/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto+Condensed:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    font-family: 'Anton', sans-serif;
    color: #222;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}

li {
    margin: 10px 0;
}

/* Make the links look like buttons */
a {
    display: block;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out, color 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a:hover {
    transform: scale(1.05);
    background: #e0e0e0;
    color: #005bb5;
}
