/*This is the main structure*/

body {
    background-color: black;
   font-family: "Verdana";    
    color: white;
}

.background {
    margin: auto;
    width: 1200px;
    height: 1000px;
    overflow: auto;
    background-color: #0f0f0f;
    box-shadow: inset 0 0 100px black;
}


.container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: minmax(100px, auto);
    width: 770px;
    margin: 20px auto 20px auto;
}



/*Details*/

hr {
    border: 1px dotted #2d2d2d;
    margin-top: -15px;
}

.divider_two {
    border: 1px dotted #ae00ff;
    margin-top: 5px;
}

.divider_three {
    border: 1px dotted #00a2e2;
    margin-top: 5px;
}

.divider_four {
    border: 1px dotted #ff00aa;
    margin-top: 5px;
}

.divider_five {
    border: 1px dotted #9ddd00;
    margin-top: 5px;
}

.divider_six {
    border: 1px dotted #fff800;
    margin-top: 5px;
}

h1 {
    font-weight: 100;
    font-family: "Century Gothic Paneuropean", sans-serif;
    color: #ae00ff;
}

h2 {
    font-weight: 300;
    font-family: "Century Gothic Paneuropean", sans-serif;
    color: #00a2e2;
}

h3 {
    font-weight: 300;
    font-family: "Century Gothic Paneuropean", sans-serif;
    color: #ff00aa;
}

h4 {
    font-weight: 300;
    font-family: "Century Gothic Paneuropean", sans-serif;
    color: #9ddd00;
}

h5 {
    font-weight: 300;
    font-family: "Century Gothic Paneuropean", sans-serif;
    color: #fff800;
}


ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a,
a:active,
a:visited {
    color: #eeeeee;
}

strong {
    font-family: "Verdana Bold";
    font-weight: 200;
}



/*This is the header*/

header {
    grid-column: 1/8;
    background-image: url("/piclog/piclog graphics/piclog header.png");
    background-size: cover;
  
}

.header_divider {
    margin-top: 235px;
}

/*This is navigation bar*/

nav {
    grid-column: 1/8;
    font-size: 13px;
    margin-top: -20px;
    padding-left: 20px;
}

/*This is the main content*/

main {
    grid-column: 1/8;
    margin-top: -100px;
    padding: 20px;
    line-height: 1.4;
    font-size: 16px;
}

article{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 13px;
}

/*This is the footer*/

footer {
    grid-column: 1/8;
    margin: 20px 0 0 0;
    color: #7e7e7e;
    font-size: 12px;
    padding: 12px 0 0 20px;
    line-height: 0.5;
}