@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600&display=swap');

body{
    
    font-family: 'Avenir', sans-serif;
                                                
}
html{
    scroll-behavior: smooth;
}
.header{
    color: #fff;
    padding: 10px;
    
}

.header video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.logo img{
    width: 150px;
    height: 30px;
    position: relative;
    top: 35px;
    left: 20px;
}
.menu{
  
    text-align: right;
    padding: 0 10px;
}

.menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li{
    display: inline-block;
    margin: 0 10px;
}

.menu a{
    color: #fff;
    display: block;
    padding: 10px;
    border-radius: 3px;
    text-decoration: none;
}

.menu a:hover{
    background-color: #fff;
    color: #000;
}

.title h2{
    font-size: 50px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Syne', sans-serif;
}

/* content */

.content{

    padding: 10px;
    bottom: -50%;
    position: absolute;
}

.content div {

    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0 20px;

}

.txt p{

    font-size: 1.1em;                                         
}

.eyeImg{

    width: 100%;
    height: 100%;
}

.eyeImg img{

    border-radius: 5px;
}

/* footer */

.footer{

    background-color: #000;
    color: #fff;
    width: 99%;
    /* height: 10%; */
    padding: 20px 0;
    text-align: center;
    bottom: -70%;
    position: absolute;
                             
}

.footer a{
    color: #fff;
    text-decoration: none;   
}



@media (max-width: 1000px) {

    .content{

        bottom: -65%;
        position: absolute;

    }
    .content div {
        flex-direction: column;
    }

    .footer{

        bottom: -79%;
    }

    .eyeImg img{

        width: 65%;
        height: 65%;
    }
}







