.button
{
    align-items: center;
    justify-content: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;

    padding: 1vh 1vw;
    border-radius: 50px;
    width: 10vw;

    background-color: rgb(112, 184, 54);
    border: none;

    color: white;
    font-size: calc(2 * (1vw + 1vh)/2);
    text-decoration: none;
    text-align: center;
    transition: all 0.4s;
}
.button:hover
{
    background-color:  rgb(67, 102, 22);
    
}