body {
    min-height: 100vh;
    cursor: url('Cursor.png'), default;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Courier New', Courier, monospace;
}

header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: white;

    padding: 0.5rem;

    border-bottom: 2px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-style: solid;
    border-color: black;

    z-index: 999;
}

footer {
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: white;

    padding: 0.5rem;

    border-top: 2px;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-style: solid;
    border-color: black;
    z-index: 999;
}

main {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

a {
    text-decoration: none;
    color: black;
    cursor: url("Cursor_CanClick.png"), pointer;
    text-align: center;
    justify-content: center;
}

button {
    padding: 4px;
    color: black;
    background-color: white;

    border-width: 1px;
    border-style: solid;
    border-color: black;
    box-shadow: 2px 2px 0 black;
    cursor: url("Cursor_CanClick.png"), pointer;
}

button:hover {
    padding: 4px;
    color: white;
    background-color: black;

    border-width: 1px;
    border-style: solid;
    border-color: gray;
    box-shadow: 2px 2px 0 grey;
    cursor: url("Cursor_CanClick.png"), pointer;
}

h1 {
    text-shadow: 1px 1px 0 grey;
    letter-spacing: 1rem;
}

img { image-rendering: pixelated }

.Heading_Games {
    animation: TitleRotation 15s linear infinite;
}

.Section_Games {
    display: flex;
    flex-direction: column;

    padding: 0.5rem;

    justify-content: center;
}

.Link_Bordered {
    padding: 4px;

    border-width: 1px;
    border-style: solid;
    border-color: black;
    box-shadow: 2px 2px 0 black
}

.Link_Bordered_Current {
    padding: 4px;
    color: white;
    background-color: black;

    border-width: 1px;
    border-style: solid;
    border-color: gray;
    box-shadow: 2px 2px 0 grey
}

.Link_Bordered:hover {
    padding: 4px;
    color: white;
    background-color: black;

    border-width: 1px;
    border-style: solid;
    border-color: gray;
    box-shadow: 2px 2px 0 grey;
}

.Link_LineThrough {
    padding: 2px;

    border-width: 1px;
    border-style: solid;
    border-color: black;

    text-decoration: line-through;
}

.Link_LineThrough:hover {
    cursor: url("Cursor_CantClick.png"), not-allowed;
    padding: 2px;

    border-width: 1px;
    border-style: solid;
    border-color: black;

    text-decoration: line-through;
}

.Flex_Games {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    border-top: 4px;
    border-style: dotted;
    border-color: black;
}

.Flex_GameTitleAndIcon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    perspective: 1000px
}

.Flex_TitleAndIcon {
    display: flex;
    flex-direction: row;
    gap: 1rem;

    border: 1px;
    border-style: solid;
    border-color: black;

    align-items: center;
}

.SVG_Pixelated {
    height: 24px;
    width: 24px;
    animation: IconAnimation 15s linear infinite;
}

.Image_GameIcon {
    width: 72px;
    height: 72px;
}

#Navbar_Pages {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

#Navbar_Socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}


@keyframes IconAnimation {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

@keyframes TitleRotation {
    0% {transform: rotateY(0deg);}
    50% {transform: rotateY(90deg);animation-timing-function: steps(1)}
    51% {transform: rotateY(270deg);}
    100% {transform: rotateY(360deg);}
}

/* ANTICHOLINERGIC */

.Anticholinergic_Body {
    background-image: url("Anticholinergic_Background.webp");
}

/* MOBILE CORRECTIONS */
@media (max-width: 768px) {
    h1 {
        letter-spacing: 0rem;
    }

    .Flex_Games {
        flex-direction: column;
    }

    #NavbarPages {
        gap: 0.5rem
    }
}