
body {
    background-color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.page-container {
    width: 100%;
    max-width: 800px;
    background-color: white;
    margin: 20px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 12px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
}

h1 span {
    color: #007BFF;
    font-weight: bold;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-container iframe {
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

form button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

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

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
