*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Popins", sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('/static/img/layer1.jpg');
    background-size: cover;
    background-position: center;
}
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}
video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 720px;
    border: 3px solid rgba(118, 205, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(118, 205, 255, 0.3);
    background: #000;
}

.wrapper {
    margin-top: 70px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(8, 2, 22, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(118, 205, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(118, 205, 255, 0.3);
}


