body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.tagline {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: -10px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#soundToggle {
    margin-top: 20px;
    background-color: #00bfa5;
    color: #1e1e1e;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#soundToggle:hover {
    background-color: #00a58c;
}


.loader {
    border: 12px solid #444;
    border-top: 12px solid #00bfa5;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.message {
    font-size: 1.5rem;
    max-width: 300px;
    min-height: 120px;
}

footer {
    color: #aaa;
    font-size: 0.9rem;
}

a {
    color: #00bfa5;
    text-decoration: none;
}