* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.header {
    background: #4CAF50;
    background-image: url("images/wispyBackground.jpg");
    color: white;
    padding: 20px;
    text-align: center;
}
.navbar {
    display: flex;
    justify-content: center;
    background: #333;
}
.navbar a {
    padding: 14px 20px;
    display: block;
    color: white;
    text-align: center;
    text-decoration: none;
}
.navbar a:hover {
    background: #ddd;
    color: black;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: royalblue;
}

.container {
    background-image: url('images/people.jpg'); /* Replace with your own background image */
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Ensure it takes at least the full viewport height */
    display: flex;
    flex-direction: column; /* Stack countdown above content */
    align-items: center; /* Center content horizontally */
    padding: 20px;
    overflow: auto; /* Enable scrolling if content overflows */
    box-sizing: border-box; /* Ensure padding is included in the height */
}

.video-container {
    margin-top: 20px; /* Add space at the top of the video */
    margin-bottom: 20px; /* Add space below the video */
}

.video-container iframe {
    width: 100%;
    max-width: 560px; /* Ensure the video scales properly */
    height: 315px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.countdown {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.content-wrapper {
    display: flex;
    gap: 20px; /* Space between the two containers */
    flex-wrap: wrap; /* Wrap the containers in case of smaller screen sizes */
    justify-content: center; /* Center content horizontally */
}

.content, .rich-text {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: left;
}

h1, h2 {
    margin-bottom: 20px;
    color: #333;
}

p {
    margin-bottom: 20px;
    color: #555;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

@media (max-width: 600px) {
    .content, .rich-text {
        padding: 20px;
    }

    h1, h2 {
        font-size: 24px;
    }

    button {
        font-size: 14px;
    }
}
