body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    display: flex;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.left-side {
    flex: 1;
    padding: 20px;
}

.left-side h1 {
    margin-bottom: 20px;
    color: #333;
}

.left-side button {
    display: block;
    width: 200px;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}

.left-side button:hover {
    background-color: #0056b3;
}

.left-side a {
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
}

.left-side a:hover {
    text-decoration: underline;
}

.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-side img {
    max-width: 100%;
    border-radius: 10px;
}
