/* This is CSS for WitchPHD's linktree page */

.lnk_box {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 24px;
}

.lnk_lst li {
    list-style: none;
    margin: auto;
}

.lnk_lst li a {
    border: 1px solid #a8e;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    font-weight: normal;
    padding: 10px 20px;
    background: #111;
    font-size: 24px;
    margin: 10px;
    color: #a8e;
}

.lnk_lst a:hover{
    background: #a8e url('med/col.webp') center;
    transform: translate(-8px, -8px);
    box-shadow: 8px 8px 0px #938;
    background-size: cover;
    color: #111;
}

/* Some changes for mobile */
@media screen and (max-width: 600px) {
    .lnk_lst li a {
        padding: 8px 18px;
        font-size: 20px;
    }
}
