body {
    margin: 0;
    font-family: "Verdana", sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

#vara-container {
    width: 800px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    position: relative;
    left: 12%;
}


h1 {
    font-family: "League Script", sans-serif;
    font-weight: normal;
    font-size: 4em;
    margin: 0;
    color: #000000;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

main {
    margin: 5em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

footer {
    font-size: 0.9em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center; /* Ensure text is centered */
}

a {
    color: #66b2ff;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

#link {
    animation-delay: 5s;
}

#footer-text {
    animation-delay: 6.6s;
}

/* Password Prompt Styles */
#password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#password-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#password-input {
    width: 100%;
    padding: 0.5rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-right: 40px;
}

#toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

#toggle-password svg {
    stroke: #666;
    width: 20px;
    height: 20px;
}

#password-submit {
    background-color: #66b2ff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

#password-error {
    color: red;
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}
