/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font Styling */
body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0f1a2b;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    display: inline-block;
    padding: 10px;
}

.logo {
    max-width: 100px;
}

h1 {
    font-size: 2.5rem;
    color: #e9a034;
    margin: 10px 0;
}

header p {
    font-style: italic;
    color: #fff;
    font-size: 1.2rem;
}

/* Social Media Section */
.social-media ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.social-media li {
    margin: 10px 0;
}

.social-media a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

.social-media img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.video-container {
    width: 330px;
    height: 200px;
    margin: 0 auto;
}

.video-container object {
    width: 100%; 
    height: 100%;
    border: none;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .logo {
        max-width: 80px;
    }

    .social-media a {
        font-size: 0.9rem;
    }
}
