body {
    background-color: #0B0F2A;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 60px; /* space for fixed footer */
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #121A3F;
    padding: 10px;
    text-align: center;
}

.logo {
    width: 480px;
    /* rounded edges */
    border-radius: 60px;
    margin-bottom: 10px;
}

nav a {
    font-size: 14px;
    color: #00E5FF;
    margin: 10px;
    text-decoration: none;
    padding: 5px 10px;
}

nav a:hover {
    color: #FF7A00;
}

.hero {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #00E5FF, #7B5CFF, #FF7A00);
}

.h1, .h2 {
    background: linear-gradient(135deg, #FF7A00, #FFB347, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center; 
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

#social-media {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    max-width: 600px !important;
    text-align: center !important;
    padding: 20px !important;
    background-color: #f9f9f9 !important;
    margin: 20px auto !important;
    border-radius: 60px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

button {
    background: #00E5FF;
    border: none;
    padding: 12px 20px;
    color: #0B0F2A;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #FF7A00;
}

#youtube iframe {
    width: 800px; /* Make iframe responsive */
    height: auto;
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
}

section {
    padding: 40px;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 5px;
}

footer a:hover {
    color: #007BFF;
    transform: scale(1.2);
}

/* media queries for each styling to improve fit on small screens */
@media (max-width: 768px) {
    header {
        padding: 5px;
    }

    .logo {
        width: 300px;
    }

    nav a {
        font-size: 12px;
        margin: 5px;
        padding: 3px 8px;
    }

    .hero {
        padding: 10px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .about {
        max-width: 90%;
    }

    .social-media {
        max-width: 90%;
    }

    #youtube iframe {
        width: 100%;
        height: auto;
    }
}
