.blog {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 90%;
  height: fit-content;
  background-color: white;
  border-radius: 10px;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 50;

  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
}

.blog .blog-information {
  margin-top: 10px;
  left: 20px;
  right: 20px;
  height: 30px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  z-index: 75;
}

.blog .blog-information .title, .date {
  font-size: 22px;
  font-weight: 530;
  color: rgb(2,28,30);
}

.main-pictures-container {
  height: 250px;
  margin-top: 75px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: rgb(0,68,69);
  padding: 10px 10px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

.main-picture {
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.blog .text-box {
  height: fit-content;
  font-size: 18px;
  overflow: hidden;
  margin: 20px;
}