@font-face {
    font-family: 'Comic Sans';
    src: local('Comic Sans'), local('Comic Sans MS'), url('/assets/fonts/COMICSANS.woff') format('woff'), url('/assets/fonts/COMICSANS.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #6fa8ff;
    margin: 0;
    font-family: 'Comic Sans', sans-serif;
    color: white;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #3e3ef0;
    font-weight: bold;
}

#bmb-info-layout {
    overflow-y: auto;
    height: 100vh;
}

#base-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    user-select: none;
}

@media only screen and (max-width: 1000px) {
    body {
        background-image: url('/assets/img/infobase.webp');
        background-size: contain;
    }

    #base-img {
        display: none;
    }
}

#heading {
    font-size: 3.5em;
    text-align: center;
    color: black;
    font-weight: bold;
    user-select: none;
}

#info {
    background-color: #191919;
    background-clip: content-box;
    box-sizing: border-box;
    border-image-slice: 43 52 56 51;
    border-image-width: 20px 20px 20px 20px;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: stretch stretch;
    border-image-source: url('/assets/img/border.png');
    border-style: solid;
    font-size: 16px;
    margin: 0 auto;
    padding: 1em;
    text-align: center;
    width: 50vw;
    text-wrap: pretty;
    word-wrap: break-word;
}

@media only screen and (max-width: 1000px) {
    #info {
        width: calc(100vw + 10px);
        margin-left: -4px;
        min-height: calc(91vh);
    }
}

.section {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 2em;
}

.section:first-child {
    margin-top: 1em;
}

.section:last-child {
    margin-bottom: 1em;
}

.section-heading {
    display: block;
    margin-bottom: 8px;
    font-size: 32px;
}

#goBack {
    text-align: center;
    margin-top: 1vh;
}

#backButton {
    height: 7.5vh;
    user-select: none;
}

#window-chud-img {
    position: absolute;
    top: 44.8vh;
    left: 86.6vw;
    width: 1.25vw;
    height: 2.5vh;
    z-index: -4;
}

#window-blinds {
    position: absolute;
    top: 41.9vh;
    left: 86vw;
    width: 3vw;
    height: 4vh;
    z-index: -3;
}

#window-blinds-img {
    width: 3.5vw;
    height: 2.5vh;
}

#window-bg {
    position: absolute;
    top: 44vh;
    left: 86vw;
    width: 3vw;
    height: 4vh;
    background-color: #565656;
    z-index: -4;
}

#squirreljak {
    position: absolute;
    top: 44vh;
    left: -24vw;
}

#squirreljak-img {
    width: 24vw;
    height: 32vh;
    user-select: none;
}

#moles {
    position: absolute;
    bottom: 0;
    user-select: none;
}

.mole {
    position: absolute;
    bottom: -15vh;
    left: 0;
    height: 15vh;
    user-select: none;
}

.mole.rare {
    z-index: 9999;
}

@keyframes peekUp {
    from {
        bottom: -15vh;
    }
    to {
        bottom: 0vh;
    }
}

@keyframes peekDown {
    from {
        bottom: 0vh;
    }
    to {
        bottom: -15vh;
    }
}

@keyframes flyUp {
    from {
        bottom: 0vh;
    }
    to {
        bottom: 100vh;
    }
}

/*
#squirreljak {
    position: absolute;
    bottom: 0;
    left: -100vw;
    animation: moveFlip 20s infinite linear;
}

#squirreljak-img {
    width: 10vw;
}

@keyframes moveFlip {
    0% {
        left: -50vw;
        transform: scaleX(1);
    }
    45% {
        left: 150vw;
        transform: scaleX(1);
    }
    50% {
        left: 150vw;
        transform: scaleX(-1);
    }
    95% {
        left: -50vw;
        transform: scaleX(-1);
    }
    100% {
        left: -50vw;
        transform: scaleX(1);
    }
}
*/