*{
    box-sizing: border-box;
}
body{
    margin: 0;
    font-family: 'Mulish', sans-serif;
    font-family: 'Oswald', sans-serif;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.content{
    display: flex;
    height: 100%;
}

.content > div{
    width: 50%;
    position: relative;
    --aspect-ratio: 3 / 4;
    flex-shrink: 0;
}
.content > div:first-child{
    border-right: 1px solid rgba(43, 59, 100, 0.7);
    background-image: url('/video-1.png');
    background-size: cover;
}
.content > div:last-child{
    border-left: 1px solid rgba(43, 59, 100, 0.7);
    background-image: url('/video-2.png');
    background-size: cover;
}

.logo{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding-top: 120px;
    z-index: 100;
}
.logo img{
    width: 250px;
}
video{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-size: cover;
}
.overlay{
    background: rgba(43, 59, 100, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
a{
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.overlay a{
    font-size: 32px;
    padding: 8px 16px;
    border: 2px solid #fff;
    width: 200px;
    text-align: center;

}
.overlay a:hover{
    background: #fff;
    color: rgb(43, 59, 100);
}
.contacts{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 30px;
    z-index: 30;
    font-size: 24px;
}

@media (max-width: 850px){
    .content{
        flex-direction: column;
    }
    .content > div{
        width: 100%;
        height: 50%;
    }
    .logo{
        padding-top: 50px;
    }
    .logo img{
        width: 100px;
    }

    .content > div:first-child{
        border-right: 0;
        border-bottom: 1px solid rgba(43, 59, 100, 0.7);
    }
    .content > div:last-child{
        border-left: 0;
        border-top: 1px solid rgba(43, 59, 100, 0.7);
    }
}