body {
    margin: 0;
    padding: 0;
    background-color: #fafafaff;
    background-image: url("https://assets.objectionstudios.com/Images/nox/whiterNox.svg");
    background-size: 100% auto;
}

p {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.5em;
    color: #2b2b2b;
}

p.small {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.25em;
    color: #2b2b2b;
}

h1 {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 7vh;
    /* 4 em */
    color: #2b2b2b;
    text-shadow: 1px 1px 2px #4e4e4e;
}

h2 {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 3em;
    color: #2b2b2b;
}

h3 {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 2.5em;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
}

h4 {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 750;
    font-size: 2.5em;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
}

h5 {
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.25em;
    color: #2b2b2b;
}

h6 {
    /* Small header */
    font-family: "area-normal", sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 1.5em;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #6f00ee;
}

a:hover {
    text-shadow: #6f00ff 0 0 10px;
}

.contentContainer {
    margin-left: 15vh;
    margin-right: 15vh;
    margin-bottom: 25vh;
    margin-top: 15vh;
    display: grid;
    grid-template-areas:
        "title space noxpeople"
        "content space noxpeople";
    grid-template-columns: 8fr 1fr 6fr;
    grid-template-rows: 20dvh 60dvh;
}

.footer {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(255, 0, 0, 0), #F4F4F4 5%);
    position: relative;
    bottom: -100vh;
}

.fCont {
    padding-left: 15vh;
    padding-right: 15vh;
    padding-top: 5vw;
    padding-bottom: 2vw;
}

.logoBig {
    max-height: 50vh;
    width: auto;
}

.linkColumns {
    margin-top: 5vh;
    display: flex;
    flex-wrap: wrap;
    gap: 7.5vh;
}

.linkColumnsColumn {
    padding: 0.5em;
}

.SpecialSmall {
    font-size: 1em;
}

/* positioning */

.infobox {
    grid-area: content;
    display: grid;
    gap: 2rem;
    grid-template-rows: 0.25fr 1.5fr 1.25fr;
    grid-template-areas: "header" "desc" "blogBox";
}

.characterPhoto {
    grid-area: noxpeople;
    aspect-ratio: 3 / 4;
    box-sizing: border-box;
    height: 70vh;
    margin: 3em 0em 3em 0em;
    justify-self: end;
    background-color: #4e4e4e;
    border-radius: 5vw 10vw 5vw;
    corner-shape: bevel round;
    padding: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innerPhoto {
    box-sizing: border-box;
    width: 80%;
    height: 90%;
    border: #474747;
    border-width: 0.5em;
    border-style: solid;
    display: flex;
    justify-content: center;
}

.photoTitle {
    align-self: flex-end;
    color: #ffc400;
    font-size: 3em;
    text-shadow: 1px 1px 2px #c09300;
    margin: 0;
}

.desc {
    grid-area: desc;
}

.header {
    grid-area: header;
}