/* Reset some basic elements */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Ensure full height layout */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #00ab9f; /* Just an example background color */
}

/* Logo container styling */
.logo-container {
    text-align: center;
}

/* Logo image styling */
.logo-container img {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
}
