html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fef7ff;
    color: #1d1b20;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.title {
    font-size: 2.5em;
    margin: 2rem;
    color: #6750a4;
    text-align: center;
}

.text {
    font-size: 1.2em;
    margin-top: 0px;
    margin-bottom: 1.25rem;
    text-align: center;
}

.button {
    margin-bottom: 1.25rem;
    padding: 1em 1.5em;
    font-size: 1em;
    color: white;
    background-color: #6750a4;
    border: none;
    border-radius: 2em;
    cursor: pointer;
    transition: background-color 0.1s;
}

.button:hover {
    background-color: #735eab;
}

.spinner {
    border: .375rem solid #f3f3f3; /* Light grey */
    border-top: .375rem solid #6750a4; /* Blue */
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    animation: spin 1s infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none;
}