body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars if image is slightly larger than viewport */
    background-color: #FFF; /* Optional: set background to white */
}

.fullscreen-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.fullscreen-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the entire image is visible within the container */
}