* {
    -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: 5px;
    grid-gap: 5px;
    overflow: auto;
    background-color: #34495e;
}
/*--------------------------------------------------------------------------------------------------------------------*/
#back_button {
    position: fixed;
    top: 5px;
    right: 5px;
    padding: 10px 20px;
    width: 130px;
    font-size: 22px;
    border-left: 3px solid ghostwhite;
    border-top: 3px solid ghostwhite;
    border-right: 3px solid grey;
    border-bottom: 3px solid grey;
    border-radius: 48px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    color: #2ecc71;
    background-color: #191919;
}

#back_button:hover {
    transition: 0.1s;
    border-left: 3px solid grey;
    border-top: 3px solid grey;
    border-right: 3px solid ghostwhite;
    border-bottom: 3px solid ghostwhite;
}
/*--------------------------------------------------------------------------------------------------------------------*/
h2, h3, .paragraph {
    min-width: 1300px;
    max-width: 1300px;
}

h2 {
    padding: 5px;
    font-size: 36px;
}

h3 {
    padding: 5px;
    font-size: 32px;
}

.paragraph {
    padding: 5px;
    font-size: 22px;
}

h4 {
    font-size: 24px;
}

#author_mobile {
    display: none;
}