body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    flex-direction: column;
    display: flex;
}

.image-wrapper{
    border: 1px solid black;
    box-sizing: border-box;
    margin-bottom: 1rem;

}

.image-container {
    width: 80vw;
    height: 45vw;
    position: relative;
    overflow: hidden;
    max-width: 852px;
    max-height: 480px;
}

.background, .overlay {
    position: absolute;
}

.background{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
}

.overlay {
    pointer-events: none;
    width: 50%;
    bottom: 0;
    left: 15%;
}

#backgroundImage {
    cursor: move;
}


button {
    background-color: #007BFF; /* Primary color */
    color: #fff; /* White text */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
}

button:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: scale(1.005); /* Slightly enlarge on hover */
}

button:active {
    background-color: #004494; /* Even darker shade on click */
    transform: scale(1); /* Reset size on click */
}

button:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* Add custom focus outline */
}
