.download .button a {
    text-decoration: underline;
}

.download a > a {
    color: black;
}

.download .button {
    color: inherit;
    background: var(--accent-light);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--border-color);
    border-radius: 0.25rem;
    margin: 0;
}

.download a.button {
    cursor: pointer;
}

.download a:hover {
    color: var(--accent);
    text-decoration: none;
}

.titlecard {
    background: var(--primary-color);
    width: 100%;
    z-index: 10000000;
    border-top: solid 1px var(--border-color);
    box-shadow: 0 0 0.15rem;
}

.titlecard a {
    text-decoration: underline;
}

.sha:before {
    content: "SHA1 ";
    text-align: left;
    font-weight: bold;
}

.sha {
    font-family: monospace;
    font-size: .75rem;
    border: solid 1px var(--border-color);
    padding: 0.25rem;
    color: var(--text-lo);
    user-select: all;
}

.betanotice.notice {
    background: var(--window-background-hi);
    padding: 1rem;
    border-radius: 0.25rem;
    margin: 0.25rem;
    align-items: center;
    place-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.betanotice:before {
    content: "BETA";
    color: white;
    background: red;
    position: absolute;
    width: 160px;
    text-align: center;
    transform: rotate(-45deg);
    transform-origin: top right;
    left: -80px;
    top: -30px;
    font-weight: bold;
}

.betanotice > span {
    margin-left: 1rem;
}

.betanotice .fademe, .betanotice .fa-robot {
    transition: all 0.5s ease-in-out;
}

.betanotice .fa-robot {
    cursor: zoom-in;
}

.betanotice:active {
    background: var(--accent);
    color: var(--text-over-accent);
}

.betanotice:active .fademe {
    opacity: 0;
}

.betanotice:active .fa-robot {
    transform: scale(3);
    transform-origin: top;
    display: block !important;
    color: var(--text-over-accent);
}
