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