  body {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        color: #fff;
        background: url('spaceship.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        text-align: center;
    }
    

    
    /* Responsive Background */
    @media (max-width: 1024px) {
        body {
            background-size: 100; /* Fit the image within the viewport */
            background-attachment: scroll; /* Avoid fixed scrolling for better performance */
        }
    }
    @media (max-width: 768px) {
        body {
            background-size: 100%; /* Scale the image slightly larger */
            background-position: top center; /* Shift focus to the top center */
        }
    }
    @media (max-width: 480px) {
        body {
            background-size: auto 100%; /* Ensure the height fits perfectly */
            background-position: center top; /* Focus on the top for smaller screens */
            background-attachment: scroll; /* Remove fixed attachment for mobile */
        }
    }
    
    .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }
    h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        text-shadow: 2px 2px #000;
    }
    p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .cta {
        font-size: 1.5rem;
        color: #00ff7f;
        margin-bottom: 30px;
    }
    .form-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        margin-top: 30px;
    }
    .checklist-box {
        width: 45%; 
        text-align: left;
    }
    .checklist {
        list-style-type: none;
        padding: 0;
    }
    .checklist li {
        margin-bottom: 10px;
        font-size: 1rem;
    }
    .checklist li::before {
        content: "👽";
        margin-right: 10px;
        color: #00ff7f;
    }
    .checklist-box img {
        max-width: 75px;
        height: auto;
        display: block;
        margin: 0 auto 15px;
    }
    .form-container {
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        padding: 20px;
        width: 50%; 
        text-align: left;
    }
    .form-container label {
        display: block;
        margin-bottom: 8px;
        font-size: 1rem;
    }
    .form-container input, .form-container textarea, .form-container select {
        width: calc(100% - 20px);
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #fff;
        border-radius: 5px;
        font-size: 1rem;
    }
    .form-container textarea {
        resize: none;
    }
    .form-container button {
        background: #00ff7f;
        border: none;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1rem;
        color: #000;
        cursor: pointer;
        width: 100%;
    }
    .form-container button:hover {
        background: #00cc66;
    }
    .fine-print {
        font-size: 0.8rem;
        color: #ccc;
        margin-top: 10px;
    }
    .entries-section {
        margin-top: 30px;
    }
    .entries-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .entry {
        background: rgba(0, 0, 0, 0.6);
        padding: 10px;
        border-radius: 5px;
        margin: 10px 0;
    }
    .hotline {
        font-size: 1.5rem;
        color: #00ff7f;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .hotline strong {
        color: #fff;
    }
    
      footer {
            margin-top: 20px;
            font-size: 12px;
            width: 100%;
            padding-top:5%;
            padding-bottom:5%;
        }

    @media (max-width: 768px) {
        .form-section {
            flex-direction: column;
            align-items: center;
        }
        .checklist-box, .form-container {
            width: 100%;
        }
    }