*{
    box-sizing: border-box;
}

.bannerVid{
    width:100%;
    position:absolute;
    top:0;
    z-index:-1;
}

.bannerVid video{
    width: 100%;
    height: 100vh;
    object-fit:cover;
    object-position: top;
}

.mainWtt{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top:15vh;
}

.mainWtt h1{
    background: linear-gradient(to top, #299390, #0D9F90);
    color: white;
    font-family: 'Abril+Fatface', 'sans-serif';
    font-size: 2em;
    padding: 10px 25px;
    letter-spacing: 2px;
    
}

.mainWtt form{
    display: flex;
    flex-direction: column;
}

.mainWtt form label{
    letter-spacing: 2px;
    padding: 15px 0 5px 0;
}

.mainWtt form textarea{
    height: 150px;
    padding: 10px;
    border: 1px solid #299390;
}

.mainWtt form input:nth-child(2){
    height: 30px;
    padding: 0 10px;
    border: 1px solid #299390;
}

.mainWtt form input:nth-child(5){
    height: 50px;
    margin: 10px 0;
    background: linear-gradient(to top, #299390, #0D9F90);
    color: white;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border:none;
}

.mainWtt form input:nth-child(5):hover{
    background: #262626;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    color: #299390;
}

.mainWtt p:nth-last-child(1){
    padding: 25px;
    letter-spacing: 3px;
}


@media screen and (max-width: 900px){
.bannerVid{
    display: flex;
    align-items: center;
    justify-content: center;
}
.bannerVid video{
    width: 100%;
    object-fit: scale-down;
    padding-top: 20%; 
}

.mainWtt{
    height: auto;
    padding-top: 35vh;
}
.mainWtt h1{
    width: 100%;
}

.mainWtt form{
    width: 90%;
}
}