* {
    font-family: Arial;
    text-decoration: none;
    color: #222222;
}

html {
    min-width: 100%;
    min-height: 100%;
}
 
body {
    min-width: 100%;
    min-height: 100%;
}

main#main h1, header#mainHeader h1, footer#mainFooter h1, main#main h2, header#mainHeader h2, footer#mainFooter h2, main#main p, header#mainHeader p, footer#mainFooter p, main#main button, header#mainHeader button, footer#mainFooter button {
    color: #FFFFFF;
}
 
main#main {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    text-align: center;
    display: flex;
}

main div#backScreen {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-size: cover;
    background-repeat:  no-repeat;
    background-position-x: center;
    background-position-x: top;
    display: flex;
    overflow: scroll;
}

main:not(#main) div#backScreen > div {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #FFFFFF;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

main#main div#backScreen div {
    position: relative;
    margin: auto auto 80px auto;
    max-width: 80vw;
}

@media screen and (max-width: 720px){
    main#main div#backScreen div {
        margin-bottom: 120px;
    }
}

main:not(#main) div#backScreen h1 {
    margin-top: 0px;
}

main#main div#backScreen div#mainTitle {
    position: absolute;
    top: -100px;
    left: 0px;
    height: 100px;
    width: 100%;
    display: flex;
    justify-items: baseline;
}

main:not(#main) div#backScreen div#mainTitle {
    margin-top: auto;
}

main#main div#backScreen div#mainTitle h1 {
    margin: auto auto clamp(-20px, -1vw, -2px) auto;
    font-size: 6vw;
    font-size: clamp(2em, 6vw, 6em);
}

main#main div#mainTxt * {
    text-shadow: 2px 2px 2px #000000;
}

main#main div#backScreen div#overview {
    display: flex;
    gap: 20px;
    margin: auto;
    width: fit-content;
}

main#main div#backScreen div#overview h2 {
    margin: 0px;
}

main#main div#backScreen div#overview div:first-child {
    font-size: 2em;
    margin: auto auto auto auto;
}

main#main div#backScreen div#overview div:last-child {
    margin: auto auto auto auto;
}

main#main div#backScreen div#overview div:last-child h2 {
    line-height: 0.8em;
}

button {
    position: relative;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 2em;
    cursor: pointer;
    height: fit-content;
    width: fit-content;
}

main#main button {
    border: 4px solid #FFFFFF;
    background: none;
    background: #00000022;
    box-shadow: inset 2px 2px 2px #000000;
    text-shadow: 2px 2px 2px #000000;
}

main:not(#main) button {
    border: 4px solid #000000;
    background: #AAAAAA;
    background: none;
    box-shadow: inset 2px 2px 2px #AAAAAA;
    text-shadow: 2px 2px 2px #AAAAAA;
    color: #000000;
}

main#main button:hover {
    position: relative;
    top: 1px;
    left: 1px;
    background: #2242AA22;
    text-shadow: 2px 2px 6px #555555;
    box-shadow: inset 2px 2px 6px #555555;
}

main:not(#main) button:hover {
    position: relative;
    top: 1px;
    left: 1px;
    text-shadow: 2px 2px 6px #424242;
    box-shadow: inset 2px 2px 6px #424242;
}

main div#backScreen a {
    position: relative;
    line-height: 50px;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: underline;
}

main div#backScreen a:hover {
    text-shadow: 2px 2px 6px #2242AA;
    text-decoration: none;
    color: #EEEEEE;
}

main#main div#backScreen p {
    max-width: 68vw;
    margin: 20px auto;
}

main:not(#main) div#backScreen div#infoScreen {
    margin: 50px auto 50px auto;
    width: calc(90% - 40px);
    height: calc(80% - 60px);
    border-radius: 10px;
    padding: 20px;
    overflow-y: scroll;
}

main:not(#main) div#backScreen div#infoBox {
    margin: auto;
    width: calc(90% - 40px);
    height: calc(80% - 60px);
    border-radius: 10px;
    padding: 60px 20px;
    overflow-y: scroll;
    text-align: center;
    display: flex;
    flex-direction: column;
}

img#postImg, img#preImg {
    position: fixed;
    min-height: 80px;
    height: 12vw;
    max-height: 120px;
    cursor: pointer;
    display: none;
}

img#postImg {
    top: calc(50% - 40px);
    right: 20px;
    z-index: 20;
}

img#preImg {
    top: calc(50% - 40px);
    left: 20px;
    z-index: 20;
}

img#postImg:hover, img#preImg:hover {
    margin: 1px 1px -1px -1px;
    filter: drop-shadow(2px 2px 6px #000000);
}

div#overviewMore > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 60vw;
    margin: 0px auto 40px auto;
}

div#overviewMore > div > p {
    margin: 0px;
    font-size: 1.1em;
}

div#overviewMore > div > p:not(:last-child) { 
    padding-right: 10px;
    border-right: 1px solid #222222;
}