:root{
    --main-color:#05a081;
    --text-color:#fff;
    --bg-color-2:#333;
}
.contact{
    /* align-items: center; */
    background-image: url(../images/contact.jpg);
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}
.py-1{
    padding-bottom: 0.25rem !important;
    color: white;
    text-transform: uppercase;
}
.contact-items{
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
    text-align: center;
    align-items: center;
}
.contact::before{
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}
.contact-items h2{
    color:#fff;
    font-size: 40px;
    margin-bottom: 18px;
}
.contact-items input[type="text"]{
    border-radius: 0.5em;
    margin-bottom: 15px;
    width:50%;
    padding:15px;
    outline: none;
    border: 1px solid #ccc;
}
.contact-items textarea{
    border-radius: 0.5em;
    margin-bottom: 15px;
    width:50%;
    padding:15px;
    outline: none;
    border: 1px solid #ccc;
}
.button{
    margin-left: 60px;
    align-items: center;
    background: var(--main-color);
    padding:0.5em;
    text-align: center;
    color:var(--text-color);
    width: 50%;
    display: block;
    border-radius: 0.5em;
    margin-bottom: 1em;
    border: 1px solid var(--main-color);
    transition: all .5s;
}
.button:hover{
    text-decoration: none;
    color: #fff;
    /* background: transparent; */
    background-color: maroon;
}
/* Valid page */
.done{
    text-align: center;
    background-image: url(../images/contact.jpg);
    width: 100%;
    background-size: cover;
    align-items: center;
    background-attachment: fixed;
    height: 500px;
}
.done h2{
    text-align: center;
    color: var(--text-color);
}