.main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  /*background-color: lightblue;*/
  background: url('../assets/1.jpg');
  background-size: 105%;
  filter: hue-rotate(50deg);
  background-position-y: -13rem;
}
.screen-overlay {
  position: absolute;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
  background-size: 4px 4px;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.info__content {
  width: 150px;
  height: 160px;
  border-right: 1.5px solid #555;
  border-left: 1.5px solid #555;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}
.info-decor {
  height: 5px;
  background-color: #a3a3a3;
  border: 1.5px solid black;
}
.info-decor:nth-child(2) {
  box-shadow: inset 0px 1.5px 0px 0px white;
}
.info-decor:nth-child(4) {
  box-shadow: inset 0px -1.5px 0px 0px white;
}
.info-footer {
  height: 15px;
  background-color: #3d3d3d;
  display: flex;
  align-items: flex-end;
}
.info-footer-trapezoid {
  height: 5px;
  position: relative;
}
.info-footer-trapezoid-border {
  border-top: 5px solid #000;
  border-right: 12px solid transparent;
  height: 0;
  width: 92%;
  position: absolute;
}
.info-footer-trapezoid-bg {
  border-top: 5px solid #555;
  border-right: 12px solid transparent;
  height: 0;
  width: calc(92% - 1px);
  bottom: 1px;
  position: absolute;
  left: 1px;
}
.content__content {
  width: 650px;
  height: 220px;
  border-right: 1.5px solid #555;
  border-left: 1.5px solid #555;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  display: grid;
  grid-template-columns: 20% 80%;
  padding: 20px 0;
}
.content__content .post {
  padding: 0 20px;
  border-left: 1px solid black;
  color: black;
  font-size: 1.2rem;
  overflow-wrap: break-word;
  overflow-y: auto;
  height: 230px;
}
.content__content .post__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}
.content-decor {
  height: 5px;
  background-color: #a3a3a3;
  border: 1.5px solid black;
  box-shadow: inset 0px 1.5px 0px 0px white;
}
.content-footer {
  height: 15px;
  background-color: #3d3d3d;
  display: flex;
  align-items: flex-end;
}
.content-footer-trapezoid {
  height: 5px;
  position: relative;
}
.content-footer-trapezoid-border {
  border-top: 5px solid #000;
  border-left: 12px solid transparent;
  height: 0;
  width: 98%;
  position: absolute;
  right: 0;
}
.content-footer-trapezoid-bg {
  border-top: 5px solid #555;
  border-left: 12px solid transparent;
  height: 0;
  width: calc(98% - 1px);
  bottom: 0.5px;
  position: absolute;
  right: 1px;
}
.quote {
  font-size: 30px;
  text-shadow: 1px 1px 2px darkblue;
  color: white;
  padding-right: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: hue-rotate(-50deg);
  grid-column: 1/3;
  max-width: 600px;
  flex-wrap: wrap;
  
}