
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 4em;
    margin-bottom: 0.2em;
}

.tagline {
    font-size: 1.5em;
    color: #ccc;
    margin-bottom: 20px;
}

.mascot {
    max-width: 200px;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta {
    background-color: #22c55e;
    padding: 12px 24px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: background 0.3s;
}

.cta:hover {
    background-color: #16a34a;
}
