/*************************************************************************************************************************************/
/*                                                          Default Styling                                                          */
/*************************************************************************************************************************************/
/*                                                         Coder: GamerGirl                                                          */
/*                                                       Copyright(©)2025-2026                                                       */
/*                                                        All Rights Reserved                                                        */
/*************************************************************************************************************************************/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    background: #3b3b3b;
    padding: 10px;
}

.master {
    margin: 0 auto;
    width: 60%;
}


.logo {
    display: block;
    text-align: center;
    background: #2c3e50;
    border-radius: 0px;
    border: 1px solid #000;
    box-shadow: 0 4px 12px rgb(0, 0, 0, 0.5);
    padding: 0px;
}

.navbar {
    border: 1px solid #000;
    box-shadow: 0 4px 12px rgb(0, 0, 0, 0.5);
    margin-top: 3px;
    margin-bottom: 3px;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-list  {
    display: flex;
    list-style: none;
    padding: 5px;
}

.navbar .nav-list li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar .nav-list li a:hover {
    background: #3498db;
}

.MainSection {
    color: #FFF;
    border: 1px solid #000;
}

.MainSection .news {
    padding: 5px 10px;
    color: #FFFFFF;
    background: #2c3e50;
}

.MainSection .news .headline {
    text-align: center;
    border-bottom: 1px solid #000;
}

.container {
    padding: 5px 5px;
    display: flex;
    justify-content: space-between; /* Pushes items to the far left and right */
    align-items: center; /* Vertically centers the text if they have different sizes */
    width: 100%;
    border: #000 1px solid;
    box-shadow: 0 4px 12px rgb(0, 0, 0, 0.5);
}
.left {
    font-size: smaller;
    color: #999;
    font-style: italic;
    padding: 5px 5px;
    
}
.center {
    color: #FFF;
    font-variant: small-caps;
    padding: 5px 5px;
}
.pd {color: #FFF;}
.pb {color: #FFF;}
.right {
    font-size: smaller;
    color: #999;
    font-style: italic;
    padding: 5px 5px;
}
.article_text {
    margin-top: 3px;
    padding: 15px 15px;
    border: #000 1px solid;
    box-shadow: 0 4px 12px rgb(0, 0, 0, 0.5);
}