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

#container {
    width: 90%;
    height: 90%;
    overflow: hidden;
    position: relative;
    border-radius: 50px; /* Rounded edges for the main container */
    background-color: #fff; /* Background color to make rounded edges visible */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional: add some shadow for better visibility */
}

#slideshow {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 50px; /* Rounded edges for the slideshow */
}

#slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px; /* Rounded edges for the image */
}

form {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 50px; /* Rounded edges for the form */
    display: flex;
    gap: 10px;
}
