body {
    margin: 0;
    padding: 0;
    color: #2c2c2c;
    background-color: rgba(255, 255, 255, 0.87);
    font-family: Arial, sans-serif;
    text-align: center;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Boldonse', cursive;
}

#selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#selector a {
    display: inline-block;
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: #6200ea;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

#selector a:hover {
    background: #3700b3;
    transform: scale(1.05);
}
