* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('Background.jpg'); /* Background image */
    background-size: cover; 
    background-position: center center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding-top: 60px; /* Add padding to the top of the body */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.pre-headline {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.left-side img {
    max-width: 100%;
    height: auto;
}

.right-side {
    max-width: 40%;
    text-align: left;
}

.right-side ul {
    list-style-type: none;
}

.right-side li {
    margin: 10px 0;
}

button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 40px;
}

footer p {
    font-size: 16px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

button[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.affiliate {
    margin-top: 20px;
}

.affiliate .button {
    background-color: #17a2b8;
    padding: 12px 30px;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.affiliate .button:hover {
    background-color: #138496;
}
