*{
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: blanchedalmond;
        
}

    header {
    width: 100%;
    height: 60px;
    margin: auto;
    align-items: center;
    padding: 50px;
    background: #2f0494;

    h1{
    color: white;
    text-align: center;
    }
    h2{
        color: white;
        text-align: center;
    }
    }
    .nav{
        background: #2f0494;
        display: flex;
        position: relative;
        margin-right:10%;
        float: right;
         overflow: hidden;
    }
    
    .nav a{
        float: left;
        color: white;
        text-align: center;
        padding: 14px 20px;
        text-decoration: none;
    
    }
    
    .nav a:visited{
        background-color: red;
    }
    .nav a:hover{
        background-color: #ddd;
        color: black;
        border-radius: 20px;
    
        .nav a::after{
            content: attr(type);
        }
    }
    
    .nav a:active{
        background-color: yellow;
    }
    .container{     
        max-width: 800px;
         margin: 10px auto;
            padding: 20px auto;
    }
    .post-section {
    width: 100%;
    padding: 50px 5vw;
    margin-left: 50px;
    text-wrap:balance;
    }
    .full-content.show {
    display: block;
    }

    .post-image {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    }

.blog-overview{
    margin-right: 20px;
    justify-content: space-around;
}

button{
  background-color: rgb(19, 1, 1);
  border: 1px solid white;
  border-radius: 5px;
  padding: 9px;
  font-weight: bold;
  color: white;
}
button:hover{
    background-color: #2f0494;
    color: white;
  }

footer{
    background-color: navy;
    color: white;
    padding: 60px;
    text-align: center;    
}

footer a{
    float: right;
    justify-content: space-between;
    color: white;

}
 footer i{
    color: white;
 }

footer i:hover{
    color: red;
    opacity: .5;
}
