body{
    background:#22A46A;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
p{
    text-align: center;
font-family: Helvetica;
font-size: 16px;
font-weight: 700;
line-height: var(--fontsize18);
letter-spacing: var(--letterspacing015);
text-align: center;
color: #F5F5F5;
width: 100%;
    
}
.buttons{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}
.buttons a{
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: var(--fontsize18);
    letter-spacing: var(--letterspacing015);
    /* text-align: left; */
    color: #22A46A;
    padding: 20px 45px;
    box-shadow: 1px 4px 12px 1px #0000001F;
    background: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 11px;
    display: block;
    border: 1px solid #22A46A;
       transition: all .3s;
}
.buttons a:hover{
    border-color: #FFFFFF;
    color: #FFFFFF;
    background: transparent;
    transition: all .3s;
}