
body {
    background-image: url('https://pbs.twimg.com/media/F6sgluSa0AA6jYh?format=jpg&name=4096x4096'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-image:
    linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(241, 225, 135, 0.841)),
    url('https://pbs.twimg.com/media/F6sgluSa0AA6jYh?format=jpg&name=4096x4096');
    color: white;
}






header {
    background-color: #f44355;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    flex-direction: row;
    flex-wrap: wrap;
}

#navbar {
    display: block; 
}


.menu-toggle-button {
    display: none; 
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
#about {
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px; 
    color: #fff; 
}


#about h1, #about p {
    text-align: center; 
}

h1 {
    background-color: #f44355; 
    color: #fff; 
    padding: 10px 20px; 
    display: inline-block; 
}



@media screen and (max-width: 768px) {
    #navbar {
        display: none; 
    }

    .menu-toggle-button {
        display: block; 
    }
}


.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; 
}

h1, h2 {
    color: #333;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; 
}

.image-gallery img {
    max-width: 100%;
    height: auto;
}

.video-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center; 
}

iframe {
    width: 100%;
    height: 315px;
}

footer {
    background-color: #f44355;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}


           

            