* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* PAGE SECTIONS*/
body {
    color: #444;
    font-family: sans-serif;

    border-top: 10px solid #1098ad;
    position: relative;
    
}

.container {
    width: 1200px;
    /* margin-left: auto;
    margin-right: auto; */
    margin: 0 auto;
    
}

.main-header {
    background-color: #f7f7f7;
    /* padding: 20px;
    padding-left: 40px;
    padding-right: 40px; */
    padding: 20px 40px;
    margin-bottom: 60px;
    /* height: 80px; */
    /* text-align: center; */
    
}


nav {
    font-size: 18px;
}

article {
    margin-bottom: 60px;
}

.post-header {
    margin-bottom: 40px;
    
}

aside {
    background-color: #f7f7f7;
    border-top: 5px solid #1098ad;
    border-bottom: 5px solid #1098ad;
    padding: 50px 40px;
    
}

/* SMALLER ELEMENTS */

h1,
h2,
h3 {
    color: #1098ad;
}

h1 {
    font-size: 26px;
    text-transform: uppercase;
    font-style: italic;
}

h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

h3 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 40px;
}

h4 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

p {
    font-size: 22px;
    line-height: 1.5;
    /* margin-bottom: 15px; */

}

ul,ol{
    margin-left: 50px;
    margin-bottom: 20px;
}
li {
    font-size: 20px;
    margin-bottom: 10px;
} 

#copyright {
    font-size: 16px;
}

/* footer p{
    font-size: 16px;
    text-align: center;
} */

#author {
    font-style: italic;
    font-size: 18px;
}

.related-author {
    font-size: 18px;
    font-weight: bold;
}

.related {
    list-style-type: none;
    margin-left: 0;
}


li:first-child {
    font-weight: bold;
}




/* Stayling Links */
/* LVHA */

.post-img{
    width: 100%;
    height: auto;
}


a:link {
    color: #1098ad;
    text-decoration: none;
}

a:visited {
    color: #1098ad;
}

a:hover {
    color: orangered;
    font-weight: bold;
    text-decoration: underline orangered;
}

a:active {
    background-color: black;
    font-style: italic;
}

nav a:link {
    margin-right: 30px;
    display: inline-block;
}

nav a:link:last-child{
    margin-right: 0;
}

.like-btn{
    font-size: 22px;
    padding:20px;
    cursor: pointer;

    position: absolute;
    bottom:50px;
    right:50px;
}

h1::first-letter{
    font-style: normal;
    margin-right: 5px;
}

h2{
    position: relative;
}

/*VERY ORIGINAL!! NoWHERE in HTML CODE!*/
h2::before{
    content: "TOP";
    background-color: #ffe70e;
    color: black;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    position: absolute;
    top:-10px;
    right:-10px;
}

/* FLOATS */


/* .author-img{
    float: left;
    margin-bottom: 20px;
}
.author{
    float: left;
    margin-top: 10px;
    margin-left: 20px;
}

h1{
    float: left;
}
nav{
    float: right;
}
.clear{
    clear: both;
}

.clearfix::after{
    clear: both;
    content: '';
    display: block;
}

article{
    width: 825px;
    float: left;
}

aside{
    width: 300px;
    float: right;
}
footer{
    clear:both;
}
*/


/*FLEX*/

.main-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-box{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author{
    margin-bottom: 0;
    margin-left: 15px;
}

.related-post{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.related-link{
    font-size: 17px;
    font-weight: bold;
    font-style: normal;
    display: block;
}

.related-author{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
}
.row{
    display: flex;
    gap: 75px;
    margin-bottom: 60px;
    align-items: flex-start;
}

article{
    flex:1;
    margin-bottom: 0;
}
aside{
    flex: 0 0 300px;
}