body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    height: 100%;
}

.text-wrapper {
    font-family: sans-serif;
    font-size: 14px;
    color: black;
    padding: 20px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 70%; /* Adjust as needed */
    max-width: 500px; /* Maximum width for the video */
    overflow: hidden;
}

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