body{
    font: 'Montserrat';
}

section{
    height: 100%;
    width: 100%;
    background-image: url(polynesia-3021072__340.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container{
    width: 500px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 20px black;
    background-color: white;
    border-radius: 18px;
    margin-bottom: 20px;
}

.form-group{
    width: 100%;
    font-size: 20px;
    margin-top: 20px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    padding: 5px;
    font-size: 18px;
    border: 1px solid rgba(red, green, blue, alpha);
}

button[type="Submit"]{
    width: 100%;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 30px;
    border-radius: 10px;
    background-color: rgba(red, green, blue, alpha);
    cursor: pointer;
    color: rgb(27,166,247); 
    margin-top: 10px;
    transition: 3s ease background-color;
}

button[type="Submit"]:hover{
    background-color: rgb(214,16,247);
}

#status{
    width: 90px;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
}

#status.success{
    background-color: rgb(211,250,153);
    animation: status 4s ease delay iteration-count direction fill-mode;
}

#status.error{
    background-color: rgb(255, 15, 63);
}

@keyframes status{
    0%{
        opacity: 1;
        pointer-events: all;
    }
    90%{
        opacity: 1;
        pointer-events: all;
    }
    100%{
        opacity: 0;
        pointer-events: none;
    }
}
section{
    background-image: url(sunset-1373171__340.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul li{
    float: left;
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 28px;
}
ul li a{
    text-decoration: none;
    color: white;
    display: block;
    font-weight: bolder;
}
ul li a:hover{
    background-color: green;
    color: black;
}
ul li a.about:hover{
    color: white;
    background-color: coral;
    font-weight: bolder;
}
ul li a.fol{
    color: white;
    font-weight: bolder;
}

ul li ul li{
    display: none;
}
ul li:hover ul li{
    display: block;
}

form{
    justify-content: center;
    min-height: 150vh;
    text-align: center;
    background-color: cornflowerblue;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 30px;
    font-family: "lato",Arial,sans-serif;
    font-weight: bold;
    color: blue;
}
h1{
    position: relative;
    margin: 0;
    font-size: 4rem;
    color: white;
    font-weight: 900;
    z-index: 1;
    overflow: hidden;
}
h1::before{
    content: '';
    position: absolute;
    left: 0;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%,#fff 5%, #000 100%);
    animation: animate 5.5s linear forwards;
    animation-delay: 2s;
}
@keyframes animate
{
    0%
    {
        left: 110%;
    }
    100%
    {
        left: -120%;
    }
}
h1 span{
    color: #ff022c;
}
video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}
footer{
    background-color: #111;
    height: auto;
    width: 100vw;
    font-family: "open sans";
    padding-top: 40px;
    color: white;
}
.main-footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-footer h31{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.main-footer h32{
    max-width: 400px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.bottom{
    text-align: center;
    font-size: 28px;
}