body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("dev.jpg");
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center; /* Center-align content within the container */
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.video-wrapper {
    margin-bottom: 20px;
    /* Display the video wrapper as flex for horizontal centering */
    display: flex;
    justify-content: center; /* Center the video horizontally within the wrapper */
}

.video-wrapper video {
    width: 100%;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify; /* Justify text content */
    color: white;

}