body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center; /* Centers children horizontally */
    justify-content: center; /* Centers children vertically */
    height: 100vh; /* Adjust to fit your layout */
}

.centered-content {
    text-align: center; /* Centers content horizontally */
}

.image-container {
    margin-top: -100px; /* Adjust as needed */
}

.button-image {
    margin-top: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.button-image.disabled {
    pointer-events: none;
}
