@font-face {
    font-family: "Apple Garamond";
    src: url("fonts/AppleGaramond.ttf") format("truetype");
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14pt;
    background-color: white;
    color: #181818;
    overflow-x: hidden;
    margin: 0;
    text-align: justify;
    cursor: default;
}

h1 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    font-size: 32pt;
}
h2 {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    font-size: 22pt;
}
p {
    margin: 3em 0 3em 0;
    line-height: 1.75em;
}

a {
    text-decoration: underline;
    text-decoration-color: chocolate;
    text-decoration-thickness: .1em;
    color: #181818;
}
a:hover {
    color: chocolate;
    text-decoration: underline;
    text-decoration-thickness: .1em;
}

footer {
    text-align: center;
    padding: 3em 0 3em 0;
}

.outletName {
    font-family: "Apple Garamond";
    font-size: 28pt;
}

.navlink {
    color: rgb(196, 196, 196);
    padding: .5em 1.5em .5em 1.5em;
    text-decoration: none;
}
.navlink:hover {
    background-color: #222222;
    color: rgb(255, 255, 255);
}

.headbanner {
    image-rendering: pixelated;
    width: 100%
}

.wrapper {
    max-width: 50%;
    margin: 0 auto;
    padding: 1em;
}

.adspace-left {
    float: left;
    width: 15%;
    margin: 1em 5% 0 5%;
    display: flex;
    flex-direction: column;
}

.adspace-right {
    float: right;
    width: 15%;
    margin: 1em 5% 0 5%;
    display: flex;
    flex-direction: column;
}

.popupAd {
    position: fixed;
    bottom: -10%;
    height: 4em;
    width: 30%;
    transition: 1s;
    display: flex;
    justify-content: center;
    animation: popupanim 1s linear 2s 1 forwards;
    left: 35%;
}
.popupAd:hover {
    cursor: pointer;
}

.ad {
    width: 80%;
    margin: 1em 10% 1em 10%;
}

@keyframes popupanim {
    0% {bottom: -10%;}
    100% {bottom: 0%;}
}

.lexie {
    font-weight: bold;
}
.lexie::before {
    
}
.godot {
    text-indent: 2em;
}
.godot::before {
    
}
.topnav {
    width: 100%;
    position: fixed;
    background-color: rgb(15, 15, 15);
    border-bottom: 1px solid rgb(206, 206, 206);
    z-index: 999;
    color: white;
}
.container {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 1em;
    padding: .5em;
}

.relatedNewsTitle {
    font-size: 12pt;
    text-align: left;
    display: block;
    text-decoration: none;
    color: #181818;
    padding-left: .5em;
    padding-right: .5em;
}
.relatedNewsTitle:hover {
    text-decoration: underline;
    color: #181818;
}

.footer {
    background-color: black;
    color: white;
}
.footerLinksContainer {
    border-bottom: 1px solid rgb(206, 206, 206);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1em;
    padding: .5em;
    width: 50%;
    margin: 0 auto;
}
.footerLinksContainer div {
    margin: 1em auto 0 auto;
    display: block;
}
.footerLinksContainer a {
    color: white;
    font-family: "Work Sans", sans-serif;
    font-size: 11pt;
}
.footerLinksContainer h1 {
    margin: 0;
    font-size: 18pt;
}
.footerLinksContainer ul {
    line-height: 1.75em;
    list-style: none;
    padding: 0;
}