#content{
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    font-family: "Open-Sans";
    font-size: 20px;
    color: white;
    background: linear-gradient(180deg, #52727a ,#41807c );
    display: flex;
    flex-direction: column;
    padding: 50px;
    width: 40%;
    border-radius: 10px;
    margin-top: 200px;
    z-index: 1;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    border: 1px solid #f1f1f1;
    margin-right: 50px;
    margin-left: 50px;
}

h1{
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
}

#content form input{
    font-family: "Open-Sans";
    font-size: 20px;
    margin-bottom: 50px;
    padding: 10px;
    border-radius: 10px;
}

#content  form select{
    font-family: "Open-Sans";
    font-size: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
}

#content form textarea{
    font-family: "Open-Sans";
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    max-height: 300px;
    max-width: 100%;
    overflow: scroll;
}

#content form button{
    margin: 10px;
    font-family: "Open-Sans";
    font-size: 20px;
    padding: 10px;
    color: white;
    border-radius: 5px;
    background-color: #6c939d;
}

#content #cap{
    margin-bottom: 1px;
}

#content form button:hover{
    background-color: #52727a;
}

#content #b{
    background: linear-gradient(90deg, #323a56 ,#2cccc4 );
    display: none;
}

#content #b:hover{
    background: white;
    color:#323a56 ;
}

#content #invisible{
    display: none;
}