@import url('https://fonts.cdnfonts.com/css/minecraft-3');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;.
}

html, body {
    height: 100%;
    font-family: minecraft, serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.triangle {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: background-color 2s ease;
}

.top-left {
    top: 0;
    left: 0;
    background-color: #000000;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.bottom-right {
    bottom: 0;
    right: 0;
    background-color: #000000;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.top-left:hover {
    background-color: #0025ff;
    color: #000;
}

.bottom-right:hover {
    background-color: #ff4141;
    color: #000000;
}

.central-box {
    position: absolute;
    width: 40%;
    height: 40%;
    background-color: #000000;
    color: #d2d2d5;
    text-align: center;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
}

#cent-box {
    display: flex;
    justify-content: center;
    font-size: 36px;
}

@media (max-width: 600px) {
    #cent-box {
        font-size: 16px;
    }
}

#tavern {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 20px;
    font-size: 60px;
    color: black;
}

#kyle {
    font-size: 60px;
    margin: 20px;
    color: black;
}

#back {
    font-family: minecraft, serif;
    font-size: 36px;
    width: fit-content;
    padding: 2px;
    align-self: center;
    text-decoration: none;
    font-weight: bold;
    background-image: linear-gradient(135deg,  #0025ff 54%, #ff4141 48%);
    -webkit-background-clip: text;
    color: transparent;
}

.hidden {
    background-color: #666; /* WOAH OH MY GOD WOAH WOAH MY WOAH */
    transition: hidden 0.2s ease;
}

.actuallyhidden {
    color: #000;
    background-image: linear-gradient(135deg,  #000 50%, #000 50%) !important;
}