.btns {
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 60%;
    height: 100%;
}

.btns a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #dedfde;
    padding: 20px;
    text-decoration: none;
    box-shadow: 0px 11px 0px 0px #126606, inset 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.btns a .ionicon {
    width: 60px;
}

.btns a span {
    margin-left: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--medium-green);
}

.btns a:hover {
    background: #d3d3d3;
}