.contact .container{
    padding-top: 30px;
    text-align: center;
    background-color: var(--foreground);
    color:var(--background);
    width:100%;
}
.contact h1{
    margin-top: 50px;
    font-size: 48px;
    font-weight: 700;
    line-height: 65px;
}
.contact p{
    margin: 32px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    opacity: 0.71;
}
.contact .button{
    display: inline-block;
    border: 0.2rem solid var(--background);
    color: var(--background);
    margin-top: 23px;
    margin-bottom: 80px;
    padding: 0.8rem 1.5rem;
    transition: all ease .2s;
    text-decoration: none;
}
.contact .button:hover{
    background-color: var(--background);
    color: var(--foreground);
    text-decoration: none;
}