/*This is the main structure*/

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

.background {
    margin: auto;
    width: 1200px;
    height: 1000px;
    overflow: auto;
    background-image: url("/graphics/me bg 1-01.png");
    background-size: cover;
    background-repeat: no-repeat;
    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;
    background-color: black;
    border: 4px #a6a6a6 dotted;
}

/*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;
    font-size: 40px;
}

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

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

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

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


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;
}

.article_divider {
    margin-top: 20px;
}

/*This is the header*/

header {
    grid-column: 1/8;
    height: 158px;
    background-image: url("/blog/blog graphics/blog header-01.png");
    background-size: cover;
    box-shadow: inset 0 0 10px #000000;
}

/*This is navigation bar*/

nav {
    grid-column: 1/8;
    font-size: 13px;
    padding-right: 20px;
    height: 40px;
    box-shadow: inset 0 0 10px #000000;
    text-align: end;
}

/*This is the main content*/

main {
    grid-column: 1/8;
    padding: 20px;
    line-height: 1.4;
    margin-top: -140px;
    font-size: 14px;
    pointer-events: none;
}

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

figure{
   text-align: center;
    margin: auto;
    padding: 5px;
}

img{
    width: 50%;
    border: 4px #ffffff dotted;
    pointer-events: none;
}

/*This is the footer*/

footer {
    grid-column: 1/8;
    text-align: center;
    color: #7e7e7e;
    font-size: 12px;
    padding-top: 50px;
    line-height: 0.5;
}