.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    display: block;
}

body .mobile-request {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1000;
    background: black;
    pointer-events: all;
    cursor: pointer;
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    vertical-align: middle;
    /* align-self: end; */
    flex-flow: column;
    align-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

body .mobile-request .logo-container {
    height: 8%;
    margin-bottom: 10%;
}

body .mobile-request .logo-container > img {
    height: 100%;
}

body .mobile-request .mobile-text {
    justify-content: center;
    color: white;
    z-index: 1001;
    display: none;
    font-size: 4vw;
    margin: 30px;
    /* user-select: none; */
    /* pointer-events: none; */
}

body .mobile-request.display {
    display: flex;
}

body .mobile-request .mobile-text.display {
    display: block;
}

body {
    margin: 0;
    overflow: hidden;
    font-family: "Courier New", Courier, monospace;
    font-weight: 500;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

body img.top-button {
    position: absolute;
    left: -10px;
    top: 20px;

    height: 10%;
    width: 10%;
    max-width: 100px;
    max-height: 100px;
    min-width: 20px;
    min-height: 20px;
}

body .menu-holder .top-button {
    cursor: pointer;
    z-index: 5;
}

body .menu {
    z-index: 1;
    width: 20%;
    height: 450px;
    left: 60px;
    top: 35px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}

body .menu .menu-button {
    animation-duration: 1s;
    animation-name: buttonAppear;
    opacity: 1;
    color: white;
    font-size: 30px;
    margin-top: 14%;
    margin-left: 20px;
}

body .menu.show {
    animation-duration: 0.5s;
    animation-name: menuAppear;
}

body .menu.hide {
    animation-duration: 0.5s;
    animation-name: menuDisappear;
}

body .menu.hide .menu-button {
    animation-name: buttonDisappear;
    animation-duration: 0.5s;
}

body .menu.hidden {
    display: none;
}

body .description-area {
    display: block;
    position: absolute;
    margin-left: 4%;
    margin-right: 4%;
    width: 92%;
    height: 40%;
    background: rgba(0, 0, 0, 0.8);
    bottom: 2%;
    left: 0;
    right: 0;
    z-index: 2;
    color: white;
}

body .description-area.show {
    animation-duration: 0.5s;
    animation-name: descriptionAppear;
}

body .description-area.hide {
    animation-duration: 0.5s;
    animation-name: descriptionDisappear;
}

body .description-area.hide .content-area {
    animation-name: textDisappear;
    animation-duration: 0.5s;
}

body .description-area.hide .chevron {
    animation-name: chevronDisappear;
    animation-duration: 0.5s;
}

body .description-area.hidden {
    display: none;
}

body .description-holder .bottom-button {
    position: absolute;
    right: 0.5%;
    bottom: 10px;
    height: 10%;
    max-width: 100px;
    max-height: 100px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    z-index: 5;
}

body .description-area .x-button {
    position: absolute;
    font-size: 20px;
    left: auto;
    right: 10px;
    z-index: 10;
    width: fit-content;
    cursor: pointer;
    user-select: none;
    font-family: Arial, Helvetica, sans-serif;
}

body .description-area .content-area .content.exitLeft {
    animation-duration: 0.7s;
    animation-name: exitLeft;
}
body .description-area .content-area .content.exitRight {
    animation-duration: 0.7s;
    animation-name: exitRight;
}
body .description-area .content-area .content.enterLeft {
    animation-duration: 0.7s;
    animation-name: enterLeft;
}
body .description-area .content-area .content.enterRight {
    animation-duration: 0.7s;
    animation-name: enterRight;
}

body .description-area .content-area .content.d-none {
    display: none;
}

body .description-area .content-area {
    animation-duration: 0.7s;
    animation-name: textAppear;
    display: flex;
    width: 60%;
    height: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 20;
}

@media only screen and (max-width: 768px) {
    body .description-area .content-area .content {
        font-size: 1.7vw;
    }
}

body .description-area .content-area .content {
    display: flex;
    vertical-align: middle;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 85%;
    width: 100%;
    font-size: 1.4vw;
    min-height: 0;
    z-index: 20;

    overflow-y: scroll;
    padding-right: 35px;
    padding-left: 35px;

    max-height: 100%;
}

body .description-area .content-area .content.left {
    text-align: left;
}

body .description-area .content-area .content.right {
    text-align: right;
}
body .description-area .content-area .content.center {
    text-align: center;
}
body .description-area .content-area .content.justify {
    text-align: justify;
}

body .description-area .content-area .content p.left {
    text-align: left;
}

body .description-area .content-area .content p.right {
    text-align: right;
}
body .description-area .content-area .content p.center {
    text-align: center;
}
body .description-area .content-area .content p.justify {
    text-align: justify;
}

body .description-area .content-area .content p.bold {
    font-weight: bold;
}

body .description-area .content-area .content p.italic {
    font-style: italic;
}

body .description-area .content-area .content > p {
    min-height: 0;
    max-height: 100%;
    /* overflow-y: scroll;
    padding-right: 35px;
    padding-left: 35px; */
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey; */
    /* border-radius: 10px; */
    opacity: 0.5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(214, 214, 214, 0.4);
    /* border-radius: 10px; */
    opacity: 0.5;
}

body .description-area .content-area .content .date {
    position: absolute;
    bottom: 10%;
    font-size: 1vw;
}

body .description-area .chevron {
    animation-duration: 0.5s;
    animation-name: chevronAppear;
    position: absolute;
    width: auto;
    height: 25%;
    cursor: pointer;
    z-index: 5;
    opacity: 0.2;
    transform: translateY(150%);
}

body .description-area .chevron.left-chevron {
    transform: rotateZ(180deg) translateY(-150%);
    left: 6%;
    right: auto;
}

body .description-area .chevron.right-chevron {
    right: 6%;
    left: auto;
}

@keyframes menuAppear {
    from {
        width: 0%;
        height: 0%;
    }
    to {
        width: 20%;
        height: 450px;
    }
}

@keyframes menuDisappear {
    from {
        width: 20%;
        height: 450px;
    }
    to {
        width: 0%;
        height: 0%;
    }
}

@keyframes descriptionAppear {
    from {
        height: 0px;
    }
    to {
        height: 40%;
    }
}

@keyframes descriptionDisappear {
    from {
        height: 40%;
    }
    to {
        height: 0px;
    }
}

@keyframes buttonAppear {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes textAppear {
    from {
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes textDisappear {
    from {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}

@keyframes chevronAppear {
    from {
        opacity: 0;
    }
    70% {
        opacity: 0;
    }
    to {
        opacity: 0.2;
    }
}

@keyframes chevronDisappear {
    from {
        opacity: 0.2;
    }
    30% {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}

@keyframes buttonDisappear {
    from {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}

@keyframes exitLeft {
    from {
        margin-right: 0px;
        opacity: 1;
    }
    to {
        margin-right: 20%;
        opacity: 0;
    }
}

@keyframes enterLeft {
    from {
        margin-left: 20%;
        opacity: 0;
    }
    to {
        margin-left: 0px;
        opacity: 1;
    }
}

@keyframes enterRight {
    from {
        margin-right: 20%;
        opacity: 0;
    }
    to {
        margin-right: 0px;
        opacity: 1;
    }
}

@keyframes exitRight {
    from {
        margin-left: 0px;
        opacity: 1;
    }
    to {
        margin-left: 20%;
        opacity: 0;
    }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

body .screen-button {
    width: 10%;
    max-width: 35px;
    height: auto;
    position: absolute;
    right: 2%;
    top: 3%;
    cursor: pointer;
    z-index: 10;
}

body .screen-button.hidden {
    visibility: hidden;
}

body {
    background: black;
    user-select: none;
}

.content-block-container {
    max-height: 100%;
}

body .bottom-button.audio-button {
    left: 29px;
    bottom: 20px;
    right: auto;
    height: 3.5%;
}

body .bottom-button.audio-button.mobile {
    right: 32px;
    top: 30px;
    bottom: auto;
    left: auto;
}

*.d-none {
    display: none;
}
