*{
    margin: 0;
    padding: 0;
}
body{
    background: #00ff9129;
}
#nav-bar{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding: 0px 0px 10px 0px;
    border-bottom: 2px solid green;
}
.nav-bar-a{
    text-decoration: none;
    color: currentColor;
    font-family: cursive;
    font-weight: 100;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid rgba(0, 57, 15, 0.842);
    padding: 0px 5px 0px 5px;
    margin: 0px 10px 0px 10px;
    transition: 0.5s;
}
.nav-bar-a:hover{
    background: rgba(0, 255, 0, 0.254);
}
.section-1{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.section-1-banner{
    margin-top: 10px;
    width: 90%;
    height: 100px;
    border-radius: 8px;
    background: #11ff008d;
    padding: 10px 0px 10px 0px;
    color: green;
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
    word-spacing: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ******************* */
.container{
    padding: 10px 0px 10px 0px;
    margin-top: 10px;
    width:  100%;
    height: auto;
    background: rgba(172, 255, 47, 0.596);
    display: flex;
    align-items: center;
    justify-content: center;
}
form{
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
}
form h2{
    color: rgba(0, 112, 41, 0.556);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
}
form input , form textarea{
    font-size: 16px;
    border-radius: 8px;
    border: none;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: rgba(58, 252, 58, 0.554);
}
form button{
    font-weight: 800;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    padding: 10px;
    background: rgb(164, 255, 164);
    color: rgb(55, 54, 54);
    border: none;
    outline: none;
    border-radius: 100px;
    cursor: pointer;
    width: 150px;
    margin: 10px auto 0;
}