* {
    margin: 0;
    padding: 0;
    font-family: "Dosis", sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(53, 82, 66, 0.5), rgba(47, 80, 63, 0.6)), 
    url(images/bg.jpg) center no-repeat;
    background-size: cover;
}

section{
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #270B67;
}

section video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}



.banner {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner h1 {
    font-size: 80px;
    color: aliceblue;
    font-weight: 300;
    margin-bottom: 30px;
}

.banner button {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin: 20px;
    border-radius: 50px;
    border: 1px solid #eee;
    font-size: 18px;
    outline: none;
    letter-spacing: 1px;
    cursor: pointer;
    animation-name: shadow; 
    animation-duration: 12s;

}


.btn-center {
    background-color: transparent;
    color: #03e9f4;
    transition: 0.5s;
}
.btn-center:hover {
    background: #03e9f4;
    color: white;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
}


form{
    position: relative;
    height: 100%;
    width: 100%;
    display: flexbox;
    align-items: center;
    justify-content: center;
}
.form-fields {
    position: relative;
    top: 20px;
    left: 20px;
    color: #eee;
    align-items: center;
}
.btn-form{
    position: relative;
    top: 20px;
    left: 20px;
    
}
.form-title{
    position: relative;
    top: 20px;
    left: 20px;
    color: #eee;
    
}



.bg-modal{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
  }
  
  .modal-content{
    width: 300px;
    height: 70px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    text-align: center;
    padding: 30px;
    font-size: 20px;
    color: grey;
  }
  