@font-face {
    font-family: mewsFont;
    src: url(../assets/fonts/MewsFont-Regular.otf);
}

* {
    font-family: mewsFont;
    font-size: 14px;
    word-spacing: 4px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #383035;
    color: #fefadf;
    display: flex;
    justify-content: center;
}

.pageCont {
    background-color: #383035;
    max-width: 900px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #fefadf;
}

.pageHeader .banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.pageHeader .banner img {
    width: 750px;
    height: auto;
    max-width: 100%;
    display: block;
}

.ticker {
    background-color: #fefadf;
    max-width: 1200px;
    padding: 4px 0;
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;

    color: #383035;
    border-top: 1px solid #383035;
    border-bottom: 1px solid #383035;
}

.tickerText {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
}

.tickerText span {
    padding: 0 20px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    } 
    100% {
        transform: translateX(-50%);
    }
}

.siteNav {
    border-bottom: 1px solid #fefadf;
    border-top: 1px solid #fefadf;
    background-color: #383035;
}

.siteNav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.75rem 1rem;
}

.siteNav a {
    color: #fefadf;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.siteNav a:hover, .siteNav a:focus {
    text-decoration: underline;
}

.siteContent {
    flex: 1;
    margin-top: 20px;
}

.siteFooter {
    padding: 0.5rem 2rem;
    border-top: 1px solid #fefadf;
    text-align: center;
}

.socialIcons {
    padding: 5px;
}

.socialIcons a{
    text-decoration: none;
    color: #fefadf;
}

@media (max-width: 800px) {
    * {
        font-size: 11px
    }
}