html, body {
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
    font-size: 1rem;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    background: linear-gradient(90deg, rgb(45, 45, 45) 0%, rgba(15, 15, 15 ,1) 40%, 
                                rgba(255, 255, 255, 1) 40%);
}
* {
    box-sizing: border-box;
}
a:link, a:visited, a:active {
    color: rgb(50, 50, 200);
}
a:hover {
    color: rgb(50, 50, 50);
}

header {
    background-color: grey;
    padding: 2% 0 2% 2%;
    margin: 5% 0 0 5%;
    position: relative;
}
header h1 {
    margin: 3% 4% 4%;
    color: white;
    text-align: right;
    font-size: 3em;
}

article div.contents {
    margin: 5%;
    margin-left: 40vw;
    padding: 3%;
    padding-left: 4vw;
    width: 60vw;
    background: linear-gradient(90deg, rgba(255, 255, 255, .5) 0%, rgba(135, 135, 135, .5) 33%, 
                                rgba(0, 0, 0, .4) 67%);
}
article div.images {
    display: block;
    position: absolute;
}
article div.images img#img_1 {
    width: 40%;
    margin-left: 6.15vw;
    margin-top: -35vh;
}
article div.images img#img_2 {
    width: 60%;
    margin-left: 5vw;
    margin-top: -80vh;
    margin-bottom: 10vh;
}
article div.contents-reversed {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, rgba(15, 15, 15, 1) 40%, 
                                rgba(45, 45, 45, 1) 100%);
    color: white;
    padding: 0 20px 20px 20px;
    width: 100%;
}
article div.contents-reversed ol {
    list-style-type: decimal-leading-zero;
}
article div.contents-reversed h1 {
    font-size: 2em;
    margin: 0 0 3% 0;
    text-align: center;
}
article div.contents-reversed div.centered {
    margin: 0 20%;
}
article div.hr-separator {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, rgba(15, 15, 15, 1) 40%, 
                                rgba(45, 45, 45, 1) 100%);
    padding: 3% 20px;
}
article div.hr-separator hr {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, #ccc, #333, #ccc);
}

section.row {
    margin-top: 6%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    overflow: auto;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(135, 135, 135, 0) 33%, rgba(0, 0, 0, .3) 67%);
    /*
    background: linear-gradient(90deg, rgba(45,45,45,1) 0%, rgba(15,15,15,1) 40%, 
                                rgba(15,15,15,1) 40%, rgba(15,15,15,0.3) 100%)
    */
}
section div.col-1 {
    flex: 30%;
    padding: 20px;
    color: white;
}
section div.col-2 {
    flex: 40%;
    padding: 20px;
}
section div.col-2 img#img_3 {
    width: 100%;
}
section div.col-3 {
    flex: 30%;
    padding: 20px;
}

footer {
    color: white;
    background: rgb(10, 10, 10);
    z-index: 1;
    display: flex;
    clear: both;
    background: linear-gradient(180deg, grey 0%, rgba(12,12,12,1) 50%, rgba(20,20,20,1) 100%);
}
footer a:link, footer a:visited, footer a:active {
    color: white;
}
footer div {
    padding: 5%;
}

footer div.author {
    flex: 40%;
    position: relative;
    width: 100%;
}
footer div.author img {
    border-radius: 4px;
    display: block;
    width: 75%;
    height: auto;
}
footer div.author .text {
    color: #fff;
    font-size: 22px;
    line-height: 1.5em;
    text-shadow: 2px 2px 2px #000;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
}

footer div.links {
    flex: 40%;
}
