body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('200w.gif'); /* Change 'your-background-image.jpg' to the path of your background image */
    background-size: cover; /* Adjust the background size as needed */
    background-position: center; /* Center the background image */
    text-align: center;
}
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Adding some transparency to the container */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    color: #1F51FF;
}
p {
    color: #FF0000;
}
.inline {
    display: inline-block;
}
.float-left {
    float: left;
}
.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}