body{
    background-color: white !important;
    background-image: none;
    font-family: georgia, serif;
    font-weight: 400;
    line-height: 1.4;
    font-size: 115%;
}
.blog-container{
    background-color: rebeccapurple;
    padding: 30px;
    color: white;
    text-align: center;
}
.navbar{    
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.navbar a{
    text-decoration: none !important;
    color: rebeccapurple;
    transition: 0.4s ease-out;
    padding: 20px;
    background-color: orange;    
    font: Roboto;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    text-align: center;
}
.navbar a:hover{
    background-color: black;
    color: chartreuse;
}
.article-container {
    margin: 20px 50px;
    background-color: #ffffff;
}
article {
    padding: 5%;
}
article h2 {
    font-family: verdana, sans-serif;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
article .date {
    text-transform: uppercase;
    font-size: 60%;
    padding-bottom: 15px;
}
article span {
    font-style: italic;
    color: rgba(0, 0, 0, 0.5);
}
article p {
    padding: 10px 0 10px 0;
}
  article img {
    padding: 5px;
}
.tags {
    font-family: verdana, sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 60%;
}
.tags li {
    background-color: tomato;
    text-align: justify;
    display: inline-block;
    list-style: none;
    margin: 5px 5px 0 0;
    padding: 5px;
    box-shadow: 1px 1px 1px #ad1a00;
}
.tags li:hover {
    background-color: #555;
    box-shadow: 1px 1px 1px #090909;
    cursor: default;
}
  .float-right {
    float: right;
} 
img {
    max-width: 100%;
}
  
a {
    color: tomato;
    text-decoration: none;
}
a:hover {
    color: #ad1a00;
    border-bottom: 1px solid #ad1a00;
}
  
hr {
    padding: 0;
    border: none;
    border-top: medium double #ddd;
    color: #ddd;
    text-align: center;
}
  
hr:after {
    content: "AB";
    position: relative;
    top: -10px;
    font-size: 25px;
    padding: 0 0.25em;
    background: #ffffff;
}
