

* {
    margin: 0;
    padding: 0;
}

body{
   background-color: beige;
}
.blog-image {

    min-width: 100%;
    height: 50vh;
   
}

.blog-image img {
    height: 100%;
    width: 100%;
}

.blog {
 
    margin: auto;
    min-height: 80vh;
    max-width: 60rem;
    display: flex;
    flex-direction: column;
}

.blog-heading {
    font-size: 4rem;
    ;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 10rem;
}

.blog-content {
    font-size: 1.2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    min-height: 70vh;
    text-align: center;

}

.comment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    min-height: 85vh;
    max-width:50rem;

}

.comment-display {
    padding: 2rem;
    min-height: 25rem;
    overflow: scroll;
}

.comment {
    border-radius: 0.5rem;
  height: 8rem;
  width: 20rem;
  background-color: #86674b8a;
  margin: 1rem;
  color: white;
  padding: 0.5 rem;
  padding: 0.5rem;
  box-shadow:5px 5px 10px rgba(0, 0, 0, 0.134)
}

.comment-head {
    box-sizing: border-box;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-head img {
    width: 2rem;
}

.add-comment {
    margin:auto;
    
    padding: 1rem;
    min-height: 20rem;;
    max-width:30rem;
}

.add-comment textarea {
    display: block;
  
    max-width:40rem;
    min-height:10rem;
    padding: 1rem;
    font-size: 1rem;
}

.add-comment-buttons {
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: auto;
    width: 80%;
    height: 3rem;
}

.add-comment-buttons button {
    margin:1rem;
    height: 2rem;
    width: 4rem;
    font-size: 1rem;
    font-family: sans-serif;
    color: white;
    background: rgb(7, 92, 7);
    border: 1px solid green;
    border-radius: 3rem;
    
}

.add-comment-buttons button:last-child{
    background-color: green;
    border:1px solid green;
    width:5rem;
}