body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #edf7fc;
    background-image: url('background.jpg'); /* Replace 'your-image.png' with your image path */
    background-size: cover; /* Cover the entire background */
    background-position: center; /* Center the background */

}

.container {
    width: 90%; /* Adjust the width as needed */
    max-width: 600px;
    padding: 20px;
    background-color: 	#b9e2f5;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

h1 {
    text-align: center;
}

.options {
    text-align: center;
}

label {
    margin-right: 10px;
    font-weight: bold;
}

button {
    margin-top: 10px;
    cursor: pointer;
    background-color: 	#50b8e7;
    border-radius: 5px;
    font-weight: bold;
}

input[type="text"] {
    width: 40%;
    margin-top: 10px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
    .container {
        width: 90%; /* Adjust the width for smaller screens */
    }
}

@media screen and (max-width: 576px) {
    .container {
        width: 95%; /* Adjust the width for even smaller screens */
    }
}

.bottom-footer {
    position: fixed; /* Position the footer */
    left: 0;
    font-family: sans-serif;
    bottom: 0; /* Position at the bottom */
    width: 100%; /* Full width */
    background-color: none; /* Background color */
    color: black; /* Text color */
    text-align: center; /* Center align text */
    padding: 10px 0; /* Padding for top and bottom */
    z-index: 999; /* Ensure it's above other content */
}

.bottom-footer p {
    margin: 0; /* Remove default margin */
    color: white;
}

.bottom-footer a {
    color: red; /* Link color */
    text-decoration: none; /* Remove underline */
}
