* {
    margin: 0;
    padding: 0;
}

body {
    background: #fbff00;
    font-family: "FANTASY", sans-serif;
}

header {
    background: rgb(255, 251, 0);
    border-bottom: 1px solid black;
}

.container {
    background: rgb(17, 0, 255);
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

img {
    height: 200px;
    float: left;
}

nav {
    float: right;
    height: 90px;
    width: 800px;
    margin-top: 60px;
    margin-right: 100px;
}

nav li {
    text-decoration: none;
    font-family: sans-serif;
    display: inline-block;
    font-size: 30px;
    padding: 10px 10px 10px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(90, 0, 0);
}

nav li:hover {
    background: #00fff2;
}

a {
    text-decoration: none;
    color: rgb(0, 204, 255);
}

.logo {
    position: relative;
    left: 20px;
}

/* КОНТЕНТ */

.articles {
    float: left;
    width: 60%;
    padding-left: 120px;
    padding-top: 50px;

}

.article {
    padding: 20px;
    margin: 10px 0;
}


.article::after {
    clear: both;
    content: '';
    display: table;
}

.article_text {
    float: left;
    width: 500px;
}



.heading {
    font-size: 40px;
}

.desc {
    font-size: 20px;
}

.date {
    font-size: 15px;
}

.article_img {
    float: right;
    box-shadow: 0 0 5px rgb(0, 174, 255);
}

/*FOOTER/*

footer{
    width: 100
    float:left;
    padding: 1;
    box-shadow: 0 0 5px black;
    background-color(0, 0, 0, 0.1)
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}