.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.post {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  padding: 20px;
  border: 1px solid white;
  border-radius: 25px;
}

.post > * {
  width: 50vw;
  text-align: left;
}

.post > iframe {
  height: 400px;
}

.post .like {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
}

.post .like p {
  font-size: 25px;
  padding: 0 10px;
}

.image-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

.image-set > img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or "contain" */
}

.post button {
  width: 150px;
  align-self: flex-end;
  border: none;
  background-color: rgb(202, 202, 202);
  color: black;
  padding: 10px;
  text-align: center;
}

.post button a {
  color: black;
  text-decoration: none;
}

.post button:hover {
  cursor: pointer;
  background-color: white;
}

.heart:hover {
  cursor: pointer;
}

#notif-section {
  display: flex;
  flex-direction: row;
  justify-content: right;
  padding: 15px;
}

#notif-section p {
  font-size: 15px;
}