@import url('https://fonts.googleapis.com/css2?family=Atomic+Age&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    font-family: 'Atomic Age', sans-serif;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece  {
    background-color: black;
}
::-webkit-scrollbar-thumb:vertical {
    height: 10px;
    background-color: white;
}
a {
    text-decoration: none;
    color: inherit;
}
.container{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
p{
    color: white;
    font-size: 2rem;
    margin-top: 5px;
    line-height: 1.9rem;
    font-weight: 300;
    letter-spacing: .05rem;
}
.section-title {
    font-size: 4rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
}
.section-title span {
    color: darkred;
}
.cta {
    display: inline-block;
    padding: 10px 30px;
    color: darkred;
    background-color: transparent;
    border: 2px solid darkred;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease;
    transition-property: background-color, color;
}
.cta:hover {
    color: white;
    background-color: darkred;
}
.exit h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: darkgrey;
}
.exit h1 span {
    color: white;
}


/* Header Section */
#header {
    position: fixed;
    z-index: 1000;
    left: 5px;
    top: 0;
    width: 99.5vw;
    height: auto;
}
#header .header {
    min-height: 8vh;
    background-color: black;
    transition: .3s ease background-color;
}
#header .exit p {
    text-align: center;
    font-size: 1.44rem;
}
#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 2560px;
    padding: 0 10px;
}
#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: black;
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
}
#header .nav-list ul.active {
    left: 0;
}
#header .nav-list ul a {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 20px;
    display: block;
}
#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: darkred;
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a {
    color: darkgray;
}
#header .header-icon {
    display: flex;
    position: relative;    
    left: 0; 
    list-style: none;
    margin: 0;
    padding: 0;
    float: none;
    margin-right: 800px;
    height: 50px;
    width: 50px;
}
#header .hamburger {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: 20px auto;
}
#header .hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid white;
    animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top, bottom;
}
#header .hamburger .bar::after {
    top: 8px;
}
#header .hamburger .bar::before {
    bottom: 8px;
}
#header .hamburger.active .bar::before {
    bottom: 0;
}
#header .hamburger.active .bar::after {
    top: 0;
}
/* End Header Section */


/* Hero Section */
#hero {
    background-image: url(./img/articlebackground.png);
    background-size: cover;
    background-position: relative;
    position: relative;
    z-index: 1;
    max-width: 2560px;
}
#hero::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: black;
opacity: .1;
z-index: -1;
}
#hero .hero {
    max-width: 250px;
    margin: 0 auto;
    padding: 0px;
    justify-content: flex-start;
}
#hero h1 {
    display: block;
    width: fit-content;
    font-size: 4rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: .5s;
}
#hero h1:nth-child(1) {
    animation-delay: .5s;
}
#hero h1:nth-child(2) {
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 1.5s;
}
#hero h1:nth-child(3) {
    animation-delay: 2.5s;
}
/* End Hero Section */


/* Articles Section */
#articles {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background-color: black;
    margin: 0 auto;
}
#articles .article {
    flex-basis: 33%;
    display: inline;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    border-radius: 10px;
    margin: 0px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
#articles .article a {
    width: 40%;
    box-shadow: 0px 0px 18px 0 darkred;
    transition: .3s ease box-shadow;
}
#articles a:hover {
    color: white;
    background-color: black;
    box-shadow: 0px 0px 5px 0 darkred;
}
#articles .articles-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
#articles h1 {
    color: white;
    padding: 10px;
}
#articles p {
    text-align: left;
    font-size: 15px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
}
#articles .date {
    font-size: 15px;
}
#articles .pages {
    color: white;
    font-size: 20px;
    margin: 0px auto;
    margin-top: 10px;
    margin-bottom: -10px;
}
#articles .pages a {
    border: none;
    box-shadow: none;
    margin-top: 20px;
}
#articles .pages a:hover {
    color: darkgray;
}
/* End Articles Section */


/* Footer */
#footer {
    background-color: darkred;
    min-height: 50px;
}
#footer .footer {
    min-height: 50px;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -15px;
}
#footer p {
    color: white;
    font-size: 1.3rem;
}
#footer img {
    max-width: 50px;
}
/* End Footer */


/* Keyframes */
@keyframes hamburger_puls {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}
@keyframes text_reveal_box {
    50% {
        width: 110%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: white;
    }
}
@keyframes text_reveal_name {
    100% {
        color: darkred;
        font-weight: 500;
    }
}
/* End Keyframes */

/* Media Query For Phone */
@media only screen and (min-width: 320px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    .cta:hover {
        color: darkred;
        background-color: black;
    }
    h1.section-title {
        font-size: 6rem;
    }
    
    /* Header */
    #header {
        width: 100vw;
        left: 0;
    }
    #header .header-icon {
        display: none;
    }
    #header .nav-list ul a::after {
        font-size: 3rem;
    }
    /* End Header */


    /* Hero */
    #hero h1 {
        font-size: 7rem;
    }
    #hero {
        background-color: black;
        background-image: none;
    }
    #hero a {
        display: none;
    }
    #hero img {
        margin: auto;
        margin-top: 50px;
        height: 100%;
        width: 100%;
    }
    /* End Hero */

    /* Articles Section */
    #articles .articles-bottom .articles-item {
        flex-basis: 40%;
        margin:0;
    } 
    #articles article p {
        display: none;
    }
    #articles .date {
        font-size: 1.3rem;
    }
    #articles .pages {
        font-size: 1.5rem;
    }
    #articles .article a {
        width: 100%;
        font-size: 1.5rem;
    }
    /* End Articles Section */


    /* Footer */
    #footer p {
        font-size: 0.75rem;
    }
    /* End Footer */
}
/* End Media Query For Phone */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    .cta:hover {
        color: darkred;
        background-color: black;
    }
    h1.section-title {
        font-size: 6rem;
    }
    
    /* Header */
    #header .header-icon {
        display: flex;
        position: relative;    
        left: 0; 
    
        list-style: none;
        margin: 0;
        padding: 0;
        float: none;
        margin-right: 400px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul a::after {
        font-size: 9rem;
    }
    /* End Header */


    /* Hero */
    #hero h1 {
        font-size: 7rem;
    }
    #hero {
        background-color: black;
        background-image: none;
    }
    #hero a {
        display: none;
    }
    #hero img {
        height: 100%;
        width: 100%;
    }
    /* End Hero */

    /* Articles Section */
    #articles .articles-bottom .articles-item {
        flex-basis: 45%;
        margin: 2.5%;
    } 
    #articles .article a {
        width: 40%;
        font-size: 2rem;
    }
    /* End Articles Section */


    /* Footer */
    #footer p {
        font-size: 1.2rem;
    }
    /* End Footer */
}
/* End Media Query For Tablet */


/* Media Query For Laptop/Desktop 1 */
@media only screen and (min-width: 1024px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 650px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 1.8rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 5rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: none;
    background-size: cover;
    background-position: 0px;
    position: relative;
    z-index: 1;
    display: block;
}
#hero a {
    display: block;
}
#hero img {
    height: 100%;
    width: 100%;
}
/* End Hero */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1024px 768px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Articles */
    #articles .articles-bottom .articles-item {
        flex-basis: 22%;
        margin: 1.5%;
    }
    #archives .archive-item img {
        display: block;
    }
    #article .article a {
        width: 40%;
        font-size: 3rem;
    }
    #article .date {
        font-size: 2.7rem;
    }
    /* End Articles*/

    
    /* Footer */
    #footer p {
        font-size: 1.3rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 1 */


/* Media Query For Laptop/Desktop 2 */
@media only screen and (min-width: 1280px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: block;
        position: relative;
        margin-right: 910px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 1.8rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 5rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1280px 720px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

/* Article */
#article {
    background-color: black;
    background-size: cover;
    background-position: 0px;
    position: relative;
    z-index: 1;
    display: block;
}
#article a {
    display: block;
}
#article img {
    height: 100%;
    width: 100%;
}
#article .signature {
    max-width: 35%;
    max-height: 35%;
}
#article iframe{
    width: 780px;
}
#article .container{
    padding: 50px;
    padding-top: 130px;
}
#article .container h1{
    font-size: 4.5rem;
}
/* End Hero */


/* Footer */
#footer p {
    font-size: 1.3rem;
}
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 2 */


/* Media Query For Laptop/Desktop 3 */
@media only screen and (min-width: 1366px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: block;
        position: relative;
        margin-right: 995px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 2.5rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 5rem;
    }
    /* End Header */


/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1366px 768px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */


/* Article */
#article {
    background-color: black;
    background-size: cover;
    background-position: 0px;
    position: relative;
    z-index: 1;
    display: block;
}
#article a {
    display: block;
}
#article img {
    height: 100%;
    width: 100%;
}
#article .signature {
    max-width: 35%;
    max-height: 35%;
}
#article iframe{
    width: 780px;
}
#article .container{
    padding: 50px;
    padding-top: 130px;
}
#article .container h1{
    font-size: 4.5rem;
}
/* End Hero */


/* Footer */
#footer p {
    font-size: 1.3rem;
}
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 3 */


/* Media Query For Laptop/Desktop 4 */
@media only screen and (min-width: 1440px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1070px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 3rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 6rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1440px 900px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Articles */
    #articles .articles-bottom .articles-item {
        flex-basis: 22%;
        margin: 1.5%;
    }
    #archives .archive-item img {
        display: block;
    }
    #article .article a {
        width: 40%;
        font-size: 5rem;
    }
    #article .date {
        font-size: 3rem;
    }
    /* End Articles*/

    
    /* Footer */
    #footer p {
        font-size: 1.3rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 4 */


/* Media Query For Laptop/Desktop 5 */
@media only screen and (min-width: 1536px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1165px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 3.5rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 7rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1536px 864px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Articles */
    #articles .articles-bottom .articles-item {
        flex-basis: 22%;
        margin: 1.5%;
    }
    #archives .archive-item img {
        display: block;
    }
    #article .article a {
        width: 40%;
        font-size: 5rem;
    }
    #article .date {
        font-size: 3rem;
    }
    /* End Articles*/

    
    /* Footer */
    #footer p {
        font-size: 1.3rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 5 */


/* Media Query For Laptop/Desktop 6 */
@media only screen and (min-width: 1600px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1225px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 3.5rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 7rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1600px 900px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Articles */
    #articles .articles-bottom .articles-item {
        flex-basis: 22%;
        margin: 1.5%;
    }
    #archives .archive-item img {
        display: block;
    }
    #article .article a {
        width: 40%;
        font-size: 5rem;
    }
    #article .date {
        font-size: 3rem;
    }
    /* End Articles*/

    
    /* Footer */
    #footer p {
        font-size: 1.6rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 6 */


/* Media Query For Laptop/Desktop 7 */
@media only screen and (min-width: 1920px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 1545px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 4rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 8rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 1920px 1080px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Articles */
    #articles .articles-bottom .articles-item {
        flex-basis: 22%;
        margin: 1.5%;
    }
    #archives .archive-item img {
        display: block;
    }
    #article .article a {
        width: 40%;
        font-size: 5rem;
    }
    #article .date {
        font-size: 3rem;
    }
    /* End Articles*/

    
    /* Footer */
    #footer p {
        font-size: 1.6rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 7 */


/* Media Query For Laptop/Desktop 8 */
@media only screen and (min-width: 2560px) {
    .cta:hover {
        color: white;
        background-color: darkred;
    }
    /* Header */
    #header {
        width: 99.5vw;
        left: 5px;
    }
    #header .header-icon {
        display: flex;
        position: relative;    
        list-style: none;
        padding: 0 auto;
        float: none;
        margin-right: 2185px;
        height: 50px;
        width: 50px;
    }
    #header .nav-list ul li {
        display: inline-block;
    }
    #header .nav-list ul li a {
        font-size: 4rem;
    }
    #header .nav-list ul a:after {
        display: flex;
        font-size: 8rem;
    }
    /* End Header */

/* Hero */
#hero {
    background-image: url(./img/Site/article-back.jpg);
    background-repeat: no-repeat;
    background-size: 2560px;
    z-index: 1;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
#hero a {
    display: block;
}
#hero img {
    display: none;
    height: 100%;
    width: 100%;
}
/* End Hero */

    /* Articles */
    #articles .articles-bottom .articles-item {
        flex-basis: 22%;
        margin: 1.5%;
    }
    #archives .archive-item img {
        display: block;
    }
    #article .article a {
        width: 40%;
        font-size: 5rem;
    }
    #article .date {
        font-size: 3rem;
    }
    /* End Articles*/

    
    /* Footer */
    #footer p {
        font-size: 1.6rem;
    }
    /* End Footer */
}
/* End Media Query For Laptop/Desktop 8 */