#BlogContent{
    width: 100%;
}

#BlogContent h1{
  color: white !important;
}

#BlogContent h2{
  color: white !important;
}

#BlogContent h3{
  color: white !important;
}

#BlogContent h4{
  color: white !important;
}

#BlogContent p{
  color: white !important;
}

.left_column {
    float: left;
    width: 65%;
}

.right_column {
    float: left;
    width: 35%;
    padding-left: 20px;
}

.tag_parent{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.display_tag{
  padding-left: .75rem;
  padding-right: .75rem;
  padding-top: .15rem;
  padding-bottom: .15rem;
  background-color: #025464;
  border-radius: 10px;
  color: white !important;
  font-family: StayGreeterRegular !important;
  font-size: 1rem !important;
}

.display_tag:hover{
  background-color: rgb(125, 125, 125);
  cursor: pointer;
}

/*#region Responsiveness*/

@media screen and (max-width: 1023px) {
    /* Small Screens */
  
    body{ padding: 1rem; }

    .standard_button{margin: auto;}

    .left_column, .right_column {
        width: 100%;
        padding: 0;
    }

    .tag_parent{
      justify-content: center;
    }

}
    
@media screen and (min-width: 1024px) {
  /* Large Screens */
  
  body{
    padding-bottom: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
  } 

}
  
  /*#endregion*/