@media (orientation: landscape) {
    html {
        display: none;
    }
}

* {
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: Arial, sans-serif;
    color: black;
    background-color: #2ecc71;
}

*::-webkit-scrollbar { /* Hide scrollbar for Chrome, Safari and Opera */
    display: none;
}

::-moz-focus-inner,
::-moz-focus-outer {
    border: none;
    outline: none;
}

body {
    display: grid;
    justify-content: center;
    align-content: start;
    height: fit-content;
    padding: 2px;
    grid-gap: 2px;
    overflow: auto;
    background-color: #34495e;
}
/*--------------------------------------------------------------------------------------------------------------------*/
#back_button {
    position: fixed;
    top: 1px;
    right: 1px;
    padding: 7px;
    width: 86px;
    font-size: 17px;
    border-left: 2px solid ghostwhite;
    border-top: 2px solid ghostwhite;
    border-right: 2px solid grey;
    border-bottom: 2px solid grey;
    border-radius: 48px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    color: #2ecc71;
    background-color: #191919;
}
/*--------------------------------------------------------------------------------------------------------------------*/
h2, h3, .paragraph {
    width: calc(100vw - 8px);
    border-radius: 4px;
}

h2 {
    padding: 2px;
    font-size: 21px;
}

h3 {
    padding: 2px;
    font-size: 19px;
}

.paragraph {
    padding: 2px;
    font-size: 15px;
}

h4 {
    font-size: 17px;
}

#author_mobile {
    padding: 2px;
    width: calc(100vw - 8px);
    height: 11px;
    border-radius: 4px;
    background-image: url("/img/author.webp");
    background-size: 316px 11px;
    background-repeat: no-repeat;
    background-position: center;
}