@charset "UTF-8";
/* CSS Document */

body {
    font-family: Helvetica, Tahoma, sans-serif;
    margin: auto 0;
    /*background-color: rgba(255, 255, 255, 0.5);*/
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 0, 0, 0.40)), 
    url(./assets/images/background-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    height: 100vh;
    width: 100vw;
    margin: 0px;
    align-items: center;
    justify-content: center;
}

.header {
    display: grid;
    grid-template-columns: 1fr 5fr 5fr;
    width: 100vw;
    height: 10vh;
    top: 0.5vh;
    position: sticky;
    background-color: #333;
}

.header-item {
    display: flex;
    height: inherit;
    align-items: center;
    justify-content: left;
}

.header-item-push {
    margin-right: auto;
    padding-left: 5px;
}

.ul-nav {
    display: flex;
    list-style: none;
}

.li-nav {
    /*display: inline-block;*/
    padding: 20px;
}

/* alpha grey content boxes */
.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-self:center;
    width: 95vw;
    gap: 10px;
}
    
/* faint div sections, white boxes with content */
.grid-item {
    display: flex;
    flex-wrap: wrap;
    flex-basis: column;
    justify-content: left;
    background-color: rgba(120, 120, 120, 0.6);
    border-left: 2px solid #333333;
    border-radius: 8px;
    margin-top: 5vh;
}

/*.grid-item-1{
    background-image: url(./assets/images/AGHOSTINTHEWOODS.jpg);
    opacity: 0.85;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}*/

/* content inside white boxes */
.grid-item-child {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    justify-content: left;
    margin: 1rem 1rem 1rem 1rem;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.76);
    border-left: 15px solid #333333;
    border-radius: 5px;
}

/* footer container dark grey */
.footer {
    display: grid;
    grid-template-columns: 4fr 1fr 2fr 3fr 1fr;
    grid-template-rows: max-content;
    align-items: center;
    position: sticky;
    font-size: 1rem;
    color:#636363;
    width: 100vw;
    bottom: 0.5vh; 
    background-color: #333;
}

.footer-item {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    margin: 5px;
    align-items: center;
    justify-content: center;

}

.footer-item-push {
    margin-right: auto;
    padding-left: 8px;
}

.h1-main {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    color: #555;
}

.h2-italic {
    font-style: italic;
    font-size: small;
}

.li-none {
    list-style: none;
}

h2 {
    color: 555;
}

p {
    color: #555;
}

a {
    color: #f5f5f6;
    text-decoration: none;
}

.a-section {
    color: #555;
}

.p-white {
    color: #fff;
}

