/*REASOURCES.CSS*/
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url('/assets/img/reaSources/reaMix.GIF') center / cover no-repeat;

    filter: blur(0.7px);
    z-index: -1;
}
body {
    background-color:rgb(0, 0, 0);
    display: block;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    font-family: 'Times New Roman', Times, serif
}

/* GRID ELEMENT FORMATTING*/
.body_container div.header {
    grid-area: header;
    text-align: center;
    background-color: rgb(44, 44, 44);
    color: rgb(255, 255, 255);
    font-family: 'Times New Roman', Times, serif;
    font-size: large;
}
.body_container div.menu {
    grid-area: menu;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    background-color: transparent;
    margin: 0px;
    padding: 0px;
}
.body_container div.content {
    grid-area: content;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
 
}
.body_container div.sitemap {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: justify;
    text-align: left;

}
.body_container div.footer {
    grid-area: footer;
    text-align: justify;
    text-align: right;
    font-size: x-small;
}

/*ELEMENT FORMATTING*/

.article {
    background-color: black;
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-template-areas: 
        "header header"
        "text img"
        "text link";
    gap: 10px;
    align-items: start;
    margin-left: 20px;
    margin-right: 20px;
}

.reel {
    width: 180px;
    aspect-ratio: 507 / 453;
    object-fit: contain;
    grid-area: img;
}
.download {
    grid-area: link;
}

/*TEXT FORMATTING*/

h1,
h2,
h3,
p {
    margin-left: 20px;
    margin-right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    
}

h1 {
    color: white;
    text-align: center;
}
h2 {
    color: white;
    text-align: center;
}
h3 {
    color: white;
    text-align: center;
}
.article h3 {
    grid-area: header;
}

/*Paragraph Formatting*/

p {
    color: white;
    background-color: black;
    text-align: justify;
    padding: 20px;
}
.article p {
    grid-area: text;
}
