* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    background-color: #2e2e2e ;
    padding-top: 60px;
    font-family: Nunito;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1f1f1f;
    color: white;

    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

main {
    margin: 50px;

    flex-grow: 1; 
}

footer {
    background-color: #1f1f1f;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

article {
    margin-right: 40%;
}
p {
    color: #d1d1d1;
}

h1 {
    color: #dbdbdb;
}

h2 {
    color: #d1d1d1;
    margin-top: 20px;
    text-align: center;
}

h5 {
    color: #dbdbdb;
}

.page-title {
    text-align: center;
    font-size: 70px;
    margin-bottom: 60px;
}

/* Header */
.site-name {
    font-size: 1.2em;
    font-weight: bold;
}

.site-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 15px;
    margin-top: 7px;
    margin-bottom: 7px;
}

nav {
    display: flex;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    text-decoration: underline;
    color: #c92112; 
}
/* Header\ */

/* Footer */
.footer-container {
    margin: 0 20px;
    display: flex;
    justify-content: space-between; 
}

.footer-links {
    list-style-type: none;
    display: flex;
    justify-content: left;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #c92112; 
}

.social-icons {
    margin: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.5em; 
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #c92112; 
}
/* Footer\ */

/* Game Showcase */
.game-showcase {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f1f1f;
    padding: 20px;
    transition: background-color 0.5s ease, color 0.5s ease;
}
.game-showcase:hover{
    background-color: #290a0a;  
    cursor: pointer; 
}

.game-showcase:hover * {
    color: #c92112; 
}

.game-showcase-description {
    height: 12rem;
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 20px;
}

.game-showcase-image {
    height: 25rem;
}
/* Game Showcase\ */

/* Home News Cards */
.home-news-container * {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.home-news-card {
    display: flex;
    margin: 10px;
    flex-direction: column;
    transition: background-color 0.5s ease, color 0.5s ease;
    background-color: #1f1f1f;
}

.home-news-card:hover{
    background-color: #290a0a;   
    cursor: pointer; 
}

.home-news-card:hover * {
    color: #c92112; 
}
.home-news-card *{
    text-align: center;
}

.home-news-card-title {
    margin-bottom: 10px;
    font-size: 25px;
}

.home-news-card-image {
    height: 200px;
    padding: 10px;
    padding-bottom: 0px;
}
/* Home News Cards\ */

/* News Cards */
.news-container * {
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-right: 40%;
}

.news-card {
    display: flex;
    margin: 10px;
    flex-direction: row;
    transition: background-color 0.5s ease, color 0.5s ease;
    background-color: #1f1f1f;
}

.news-card:hover{
    background-color: #290a0a;   
    cursor: pointer; 
}

.news-card:hover * {
    color: #c92112; 
}
.news-card *{
    justify-content: space-evenly;
}

.news-card-info {
    text-align: left;
    
}

.news-card-title {
    font-size: 25px;
}

.news-card-image {
    height: 200px;
    width: 200px;
    padding: 10px;
    margin-right: 10px;
}
/* News Cards\ */

/* News article */
.news-headline {
    font-size: 50px;
}

.news-date {
    color:#6d6d6d;
    text-decoration: underline dotted;
}

.news-image {
    height: 380px;
}

.news-chapter {
    text-align: left;
}
/* News article\ */

/* Socials */
.sm-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
    background-color: #1f1f1f;
    padding-left: 40px;
    padding-right: 40px;
    transition: background-color 0.5s ease, color 0.5s ease;
    margin-bottom: 25px;
}
.sm-container:hover{
    background-color: #290a0a;  
    cursor: pointer; 
}

.sm-container:hover * {
    color: #c92112; 
}

.sm-container * {
    color: #d1d1d1;
    text-align: left;
}

.sm-container li {
    color: #d1d1d1;
    margin-left: 20px;
}

.sm-icon {
    font-size: 200px;
    color: #d1d1d1;
}
/* Socials\ */

/* Project Aragon */

.background-image {
    height: 100vh; 
    background-image: url('images/Placeholder render 4K.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 20%;
}
.background-image p {
    text-align: center;
}

/* Project Aragon\ */

/*Phones*/
@media (max-width: 600px) { 
    .page-title {
        font-size: 45px;
        margin-bottom: 30px;
    }
    p {
        text-align: center;
    }
    .nav-links {
        align-items: center;
    }
    .site-name {
        display: none;
    }
    .nav-PA {
        max-width: 70px;
    }

    .game-showcase {
        flex-direction: column;
    }

    .game-showcase-image {
        margin-top: 1rem;
        height: 8rem;
    }

    .game-showcase-description {
        margin-right: 0;
    }

    .game-showcase-description * {
        margin-right: auto;
        margin-left: auto;
    }
    .home-news-container * {
        flex-direction: column;
    }
    .home-news-card-image {
        height: auto;
    }
    .news-card {
        flex-direction: column;
    }
    .news-card *{
        justify-content: space-evenly;
        align-items: center;
        margin: auto;
    }
    .news-card-info {
        text-align: center;
        margin: auto;
    }
    .news-list{
        margin: 5% 5%;
    }
    .news-card-image {
        margin-top: 5%;
        margin-left: auto;
        margin-right: auto;
    }

    article {
        margin-right: 0;
    }
    article * {
        text-align: left;
    }
    .news-image {
        height: 140px;
    }

    .sm-container {
        flex-direction: column;
        max-width: 80%;
        padding-left: 30px;
        padding-right: 30px;
        align-items: center;
    }
    .sm-icon {
        font-size: 100px;
    }
    .sm-container li {
        margin-left: auto;
    }

    .background-image {
        height: 40vh; 
    }
}

/*Tablets*/
@media (min-width: 601px) and (max-width: 1024px) {
    .news-image {
        height: 330px;
    }

    .game-showcase-image {
        margin-top: 1rem;
        height: 12rem;
    }

    .sm-container {
        max-width: 80%;
    }
    .background-image {
        height: 50vh; 
    }
}

/*Desktops*/
@media (min-width: 1025px) { 
}