﻿* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    position: relative;
    font-family: Gilroy;
}

.mainContent {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mainContent  > video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto; 
}
@supports (object-fit: cover) {
    .mainContent > video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    margin: 30px 20px 0px;
}
.header__text {
    font-family: Gilroy;
    font-weight: 500;
    font-size: 25px;
    color: rgb(206, 207, 202);
    text-decoration: none;
}
.header__text:hover {
    text-decoration: none;
}

.main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.main__textBlock {
    margin: 0 30px;
    width: 300px;
    text-align: center;
}
.main__headline {
    color: white;
    font-weight: 700;
    font-size: 60px;
    letter-spacing: 3px;
    margin-bottom: 0px;
}
.main__text {
    font-family: Gilroy;
    color: white;
    text-align: start;
    line-height: 20px;
}
.main__logo {
    width: 130px;
}

.getBtn {
    height: 35px;
    width: 150px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 20px;
    border: none;
    margin: 420px auto 0px;
    background: -moz-linear-gradient(rgb(255, 101, 107), rgb(255, 185, 113));
    background: -webkit-gradient(linear, 0 0, 90 100%, from(rgb(255, 101, 107)), to(rgb(255, 185, 113)));
}
.getBtn a {
    text-decoration: none;
    color:white;
}
.getBtn a:hover {
    text-decoration: none;
    color:white;
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}
.footer__imgs {
    position: relative; 
    width: 120px;
    display: flex;
    justify-content: space-between;
}
.footer__img {
    height: 30px;
}
.footer__text {
    font-family: Gilroy;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: rgb(206, 207, 202);
    display: flex;
    justify-content: center;
}

.pos-f-t {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 300px;
    display: flex;
    justify-content: flex-end;
}
.navbar-fix{
    top: 20px;
    right: 20px;
}

.center {
    margin: 0 auto;
}

@media screen and (max-width: 830px) {
    .main__textBlock {
        width: 150px;
    }
    .main__headline {
        font-size: 35px;
    }
    .main__logo {
        width:70px;
    }
    .footer {
        bottom: 70px;
        left: 50%;
        transform:translateX(-50%);
    }
    .getBtn {
        margin: 305px auto 0px;
    }
}
@media screen and (max-width: 480px) {
    .getBtn {
        margin: 355px auto 0px;
    }
}
@media screen and (max-width: 480px) {
    .main {
        flex-direction: column;
        justify-content: flex-start;
    }
    .main__textBlock {
        width: 300px;
    }
}
