.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.god-nav {
    text-align: center;
    font-size: 24px;
    padding: 10px;
    margin-bottom: 1%;
    width: 85%;
    max-width: 1200px;
    position: absolute; /* Keeps it positioned relative to the page */
    top: 2.5%; /* Adjust this to control spacing from the top */
    left: 50%; /* Moves it to the center */
    transform: translateX(-50%); /* Centers it properly */
}

.nav-link {
    margin: 5%;
}

.god-nav a {
    text-decoration: none;
    color: black;
    padding: 0 10px;
    transition: transform 0.1s ease-in-out;
}

.god-nav a:hover {
    color: dimgray;
}

.full-text {
    display: none;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 25px;
    min-height: 100vh;
}

.grid-container {
    display: grid;
    max-width: 1200px;
    gap: 10px;
    width: 85%;
    margin: auto;
    padding: 10px;
    background: white;
    border: 2px solid black;
    position: absolute; /* Keeps it positioned relative to the page */
    top: 10%; /* Adjust this to control spacing from the top */
    left: 50%; /* Moves it to the center */
    transform: translateX(-50%); /* Centers it properly */
}

.left-cell {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid black;
}

img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.right-cell { /* all the right content */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-right { /* top two squares */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.top-right-cell { /* top two squares */
    text-align: center;
    border: 0px solid black;
}

.bottom-right { /* lore content */
    padding: 2%;
    flex-grow: 1;
    border: 0px solid black;
}

p {
    margin: 0;
    line-height: 1.25em;
    font-size: 18px;
    text-indent: 1.5em;
}
h3 {
    font-size: 24px;
    margin-top: 6%;
    margin-bottom: 2%;
}
h5 {
    font-size: 18px;
    color: gray;
    margin-top: 8%;
    margin-bottom: 0%;
}

/* Media Query */
@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: 1fr 2fr;
    }
    img {
        min-width: 600px;
    }
    .full-text{
        display: inline-block;
    }
    .short-text{
        display: none;
    }
    .god-nav {
        top: 7.5%;
    }
    .grid-container {
        top: 15%;
    }
}