.main-beast {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    overflow: hidden;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.beast-yes,
.beast-no {
    width: 150px;
    text-align: center;
    transform-origin: center;
}

.beast-yes {
    transform: rotate(-3deg);
}

.beast-no {
    transform: rotate(2deg);
}

.beast-yes a,
.beast-no a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--lowkey);
    font-weight: bold;
    font-size: 40px;
}

.beast-no a {
    background-color: var(--zato-base);
    cursor: pointer;
}

.beast-yes a {
    color: grey;
}

.beast-yes a:hover {
    color: #8c0000;
    cursor: pointer;
}

.beast-no a:hover {
    filter: brightness(1.1);
}

.infodump {
    position: fixed;
    bottom: 100px;
    width: 840px;
    max-width: none;
    font-size: 14px;
    padding: 8px 12px;
    filter: brightness(0.8);
}

.ogur {
    transform: scale(3);
}

@media (min-width: 2560px) and (min-height: 1440px) {
    .ogur {
        transform: scale(4);
    }
}

@media (max-width: 1440px) and (min-width: 1367px) {
    .ogur {
        transform: scale(2.25);
    }
}

@media (max-width: 1366px) and (min-width: 1281px) {
    .ogur {
        transform: scale(2.13);
    }

    @media (max-width: 1280px) and (min-width: 1025px) {
        .ogur {
            transform: scale(2);
        }
    }
}
