* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    background: linear-gradient(270deg, #fda085, #f6d365);
    font-family: "Calibri", sans-serif;
    font-weight: 500;
}

header {
    position: sticky;
    top: 0;
    background: #ff7939;
    border-bottom: 1px solid black;
}

.add_header {
    background: #ff7939;
    border-bottom: 1px solid black;
    text-align: center;
}


.slogan {
    font-size: 40px;
    font-family: sans;
    font-style: italic;
    color: black;
    margin: 50px 0;
}

.button {
    background: black;
    font-size: 20px;
    width: 150px;
    text-align: center;
    padding: 15px;
    margin: 0 auto;
    color: white;
    border-radius: 5px;
    margin-bottom: 50px;
    font-weight: 900;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 8px;
    margin: 0 auto;
}

.container:after{
    content: "";
    display: table;
    clear: both;
}

.logo {
    height: 70px;
    float: left;
}

nav {
    float: right;
}

nav li {
    display: inline-block;
    margin: 0 5px;
}

nav a {
    line-height: 70px;
    font-size: 20px;
    margin: 0 10px;
    color: black;
}

nav ul li:last-child {
    background: black;
    border-radius: 10px;
}

.login {
    color: white;
    font-weight: 900;
}

a:hover, .button:hover {
    color: white;
}

/* Styles for articles */

.articles {
    float: left;
    width: 65%;
    padding: 10px;
}

.article {
    padding: 20px;
    margin: 10px 0;
}

.article:after {
    content: "";
    display: table;
    clear: both;
}

.article_text {
    float: left;
    width: 500px;                              
}

.heading {
    font-size: 40px;
}

.desc {
    font-size: 20px;
    color: rgb(0, 0, 0, 0.9);
}

.date {
    font-size: 15px;
    color: rgb(0, 0, 0, 0.9);
    margin-top: 5px;
}

.article_img {
    height: 150px;
    width: 150px;
    background: grey;
    float: right;
}


/* Styles for sidebar */

.sidebar {
    border: 1px solid black;
    float: right;
    width: 30%;
    padding: 10px;
}

