body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}
.gradient-background {
    background: linear-gradient(to bottom right, rgba(131, 58, 180, 0.7), rgba(253, 29, 29, 0.7), rgba(252, 176, 69, 0.7));
    /* Rest of your styles */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    background-color: black;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.text-box {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

p {
    font-size: 16px;
    margin: 0 0 20px 0;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background-color: white;
    margin-bottom: 10px;
    padding: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
