.other {
    padding-left: 1.2rem;
}

li p {
    line-height: 1;
}

.entry {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-right: 30px;
}

.entry div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3ea6ff;
    padding: 10px 20px;
    border-radius: 999px;
    transition: background 0.2s;
}

.entry div:hover {
    background: #ff9028;
}

.entry a {
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
}

.entry span {
    color: #fff;
    font-size: 0.8rem;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
}

@media (max-width: 601px) {
    .buttons {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}