*{
    margin: 0; 
    padding: 0;
}

body{
    background-color: #000;
    font-family:'Roboto', sans-serif;
    position: relative;
}

.container{
    margin: 0 auto;
}

.main-header{
    padding: 40px;
    border: 1px solid whitesmoke;
    background-image: url("../img/logo/background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

nav{
    font-size: 18px
}

article{
    margin-bottom: 60px;
 
}

.post-header{
    margin-bottom: 40px;
}

aside{
    padding: 40px;
    color: whitesmoke;
    border: 1px solid whitesmoke;
    background-image: url("../img/logo/background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*Smaller Elements*/
h1, 
h2, 
h3, 


h1{
    font-size: 26px;
    font-family: sans-serif;
    text-transform: uppercase;
    color: whitesmoke;
}

h2{
    font-size: 30px;
    color: whitesmoke;
    margin-bottom: 30px;
}

h3{
    font-size: 24px;
    color: whitesmoke;
    margin-bottom: 20px;
    margin-top: 40px;
}

h4{
    text-transform: uppercase;
    color: whitesmoke;
}

p{
    font-size: 18px;
    font-family: sans-serif;
    line-height: 1.5;
    color: whitesmoke;
    margin-bottom: 15px;
}

ul, 
ol{
    margin-left: 50px;
    margin-bottom: 20px;
}

li{
    font-size: 18px;
    margin-bottom: 8px;
    margin-right: 130px;
    color: whitesmoke;
}

li:last-child{
    margin-bottom: 20px;
}

.text-container{
    float: left;
    background-color: black;
}

#copyright{
    font-size: 16px;
}

.related-author{
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
}

.related{
    list-style: none;
    color: whitesmoke;
}


/*Missconception*/
article p:first-child{
    color: black;
}

/*Styling Link -- Reihenfolge beachten LVHA*/
a:link{
    color: whitesmoke;
    text-decoration: none;
}

a:visited{
    color: whitesmoke;
}

a:hover{
    color: whitesmoke;
    font-weight: bold;
    text-decoration: underline black;
}

a:active{
    background-color: whitesmoke;
    font-style: italic;
}
/*LVHA*/

.post-img{
    width: 100%;
    height: auto;
}

nav a:link{
    margin-right: 30px;
    margin-top: 10px;
    display: inline-block;
}


nav a:link:last-child{
    margin-right: 0;
}

h1::first-letter{
    font-style: normal;
}

/* 6 */
.btn-6 {
    background: transparent;
     color: #fff;
     line-height: 42px;
     padding: 0;
     border: none;
    }
    .btn-6 span {
     position: relative;
     display: block;
     width: 100%;
     height: 100%;
    }
    .btn-6:before,
    .btn-6:after {
     position: absolute;
     content: "";
     height: 0%;
     width: 2px;
     background: darkgrey;
    }
    .btn-6:before {
     right: 0;
     top: 0;
     transition: all 500ms ease;
    }
    .btn-6:after {
     left: 0;
     bottom: 0;
     transition: all 500ms ease;
    }
    .btn-6:hover{
     color: #fff;
     background: transparent;
    }
    .btn-6:hover:before {
     transition: all 500ms ease;
     height: 100%;
    }
    .btn-6:hover:after {
     transition: all 500ms ease;
     height: 100%;
    }
    .btn-6 span:before,
    .btn-6 span:after {
     position: absolute;
     content: "";
     background: white;
    }
    .btn-6 span:before {
     left: 0;
     top: 0;
     width: 0%;
     height: 2px;
     transition: all 500ms ease;
    }
    .btn-6 span:after {
     right: 0;
     bottom: 0;
     width: 0%;
     height: 2px;
     transition: all 500ms ease;
    }
    .btn-6 span:hover:before {
     width: 100%;
    }
    .btn-6 span:hover:after {
     width: 100%;
    }
    



