@charset "utf-8";
/* CSS Document */

.item-link {
    display: block;
    text-decoration: none;
    color: #1a7f1a;
    font-weight: bold;
    font-size: 18px;

    border: 2px solid #3aaa35;
    border-radius: 30px;

    padding: 12px 20px;
    margin-bottom: 15px;

    transition: all 0.3s ease;
}

.item-link:hover {
    background-color: #3aaa35;
    color: #ffffff;
}
