@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@1,300&display=swap');

* {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;

    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
}

#bgImg {
    position: fixed;
    background-color: black;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: translate(-50%, 0);
    margin-left: 50%;
    top: -5%;
    z-index: 2;
}

#menuBtn {
    position: fixed;
    cursor: pointer;
    top: 0px;
    color: white;
    z-index: 99;
}

#sidebarItems {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0px;
    padding-top: 40px;
    width: 10%;
    height: 100%;
    border-right: 1px solid orange;
    z-index: 2;
}

#sidebarItems button {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    color: white;
    border-bottom: 1px solid rgba(255, 166, 0, 0);
    width: 100%;
    text-align: left;
    transition: 250ms;
}

#sidebarItems button:hover {
    border-bottom: 1px solid rgb(255, 166, 0);
}

#pageItems button {
    width: 100px;

    color: white;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    border-bottom: 1px solid rgba(255, 166, 0, 0);
    transition: 250ms;
}
#pageItems button:hover {
    border-bottom: 1px solid orange;
}

#pageItems {
    position: absolute;
    z-index: 98;
    color: white;
    transform: translate(-50%, 0);
    left: 50%;
    top: 45%;
    width: 100%;
}

#title {
    position: absolute;
    z-index: 98;
    color: white;
    transform: translate(-50%, 0);
    left: 50%;
    top: 40%;

    width: auto;
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;

    animation: blink-caret .75s step-end infinite;
}

@keyframes startAnim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
}

#txt1, #txt2 {
    width: 50%;
    font-size: 12.5px;
    margin-bottom: 10px;
    transform: translate(-50%, 0);
    margin-left: 50%;
}