body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

header {
    background-color: #3f51b5;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    height: calc(100% - 160px); /* Adjusting for header and footer height */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.live-stream {
    width: 670px;
    height:520px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content {
    text-align: center;
    width: 80%;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.description {
    padding: 0px;
    background-color: #f4f4f9;
    color: #333;
    text-align: left;
    margin-top: 0px;
    max-width: 800px; /* Set a max-width to restrict the width of the text */
}

.description p, .description ul {
    margin: 0 0 20px 0; /* Ensure space between paragraphs and lists */
}

.description ul {
    padding-left: 20px; /* Indent the list */
}

footer {
    background-color: #3f51b5;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}



