.clickdiv {
    text-decoration: none;
    background: #111317;
}
.actionbar {
    display: flex;
    align-content: center;
    justify-content: right;
    background-color: #a65eff;
    box-shadow:
        0 0 0.2rem #0000001a,
        0 0.2rem 0.4rem #0003;
    max-height: 52.8px;
}

.barbutton {
    display: flex;
    font-size: 2em;
    color: ghostwhite;
    font-family: monospace;
    min-width: 9vw;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}
.barbutton:hover {
    background-color: #1e1c25;
}

.clickdiv_middle {
    border-color: #a65eff;
    border-width: thin;
    border-left-style: solid;
    border-right-style: solid;
}

.bar_logo {
    display: flex;
    width: 65px;
    cursor: pointer;
    margin-right: auto;
}
.meowtils_cute {
    display: none;
}
.bar_logo:hover {
    .meowtils_normal {
        display: none;
    }
    .meowtils_cute {
        display: inline;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 2vw;
    }
    .actionbar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    .barbutton {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .clickdiv {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .clickdiv_middle {
        border-style: none;
    }
    .bar_logo {
        display: none;
    }
}
