body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
}

h1 {
    position: relative;
    text-align: center;
    margin-top: 10px;
    font-size:50px;
    top:50px;

}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px); 
    width: 100%;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
}

.video-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 70%; 
    height: 100%;
    transition: transform 0.5s ease; 
}

.video-container:hover {
    transform: scale(1.1); 
}

.video-link {
    display: inline-block; 
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.invisible-border {
    width: 2px;
    background-color: transparent;
    height: 100%;
}