body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Make the body take up the full viewport height */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-family: Tahoma, Arial, sans-serif; /* Use Tahoma font with fallbacks */
    font-size: 14px;
}

.container {
    text-align: center; /* Center text within the container */
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center child elements horizontally within the center div */
    margin-top: -30vh; /* Offset by 30% of the viewport height */
}

img {
    max-width: 100%;
    height: auto;
}
