.container {
  position: relative; }
  .container .loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10; }
    .container .loading .loader {
      border-color: white;
      border-top-color: black;
      margin-top: 100px;
      border-width: 1px;
      animation-timing-function: linear; }
    .container .loading dotlottie-player {
      display: block;
      margin: 50px auto 0 auto; }
  .container .back {
    width: max-content;
    cursor: pointer;
    gap: 5px;
    margin: 30px 0 50px 0; }
    .container .back img {
      width: 18px;
      height: auto; }
  .container h1 {
    font-weight: normal;
    font-size: 1.5rem; }
  .container .posts {
    margin-bottom: 100px; }
    .container .posts .post-container {
      margin-bottom: 25px; }
      .container .posts .post-container .post {
        background-color: gray;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 350px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        background-color: black; }
        .container .posts .post-container .post .over {
          opacity: 0;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.7);
          transition: opacity 0.2s ease-in-out;
          color: white;
          font-size: 0.9rem;
          text-transform: uppercase;
          display: flex;
          align-items: center;
          justify-content: center;
          pointer-events: none;
          text-align: center; }
          .container .posts .post-container .post .over .more {
            border: solid 1px white;
            border-radius: 5px;
            padding: 5px 10px;
            margin-top: 5px; }
        .container .posts .post-container .post:hover .over {
          opacity: 1;
          pointer-events: all; }
        .container .posts .post-container .post.photo {
          margin-bottom: 15px; }
      .container .posts .post-container h4 {
        margin-top: 7px;
        font-size: 22px; }
