body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75vh;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

.giant-numbers {
    font-size: 450px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.number {
    display: inline-block;
    position: relative;
    font-size: 1em;
    margin: 0 30px;
    overflow: hidden;
}

.flag-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(0, 0px);
    width: 100%;
    height: 100%;
    animation: flagAnimation 5s infinite linear;
    mix-blend-mode: screen;
    opacity: 0.8;
}

/* @keyframes flagAnimation {
    25% { transform: translate(-50%, -50%) translate(20px, -20px); }
    50% { transform: translate(-50%, -50%) translate(0px, -40px); }
    75% { transform: translate(-50%, -50%) translate(-20px, -20px); }
    100% { transform: translate(-50%, -50%) translate(0px, 0px); }        
} */

.login-form {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form input {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #0056b3;
}
