  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    /* margin: 0; */
    padding: 0;
    background-color: #2C313D;
    font-family: Arial, sans-serif;
  }

  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .header {
    text-align: center;
    padding: 60px 40px 20px 40px;
  }

  h1 {
    font-size: 80px;
    margin: 0;
    color: #ffffff;
    font-family: "profile-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  h2 {
    font-size: 44px;
    margin: 0;
    color: #98caec;
    text-transform: uppercase;
    font-family: "profile-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  /* .container {
    display: flex;
    max-width: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 0 100px 100px 100px;
    width: 100%;
  } */

  .container {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding: 0 100px 100px 100px;
    flex-wrap: wrap;
  }

  .post {
    width: 900px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 1;
  }

  .post-header, .post-footer {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #bbb;
    border: 1px solid #ccc;
  }

  .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }

  .dots {
    display: flex;
    gap: 4px;
  }

  .dot-menu {
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
  }

  .post-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .icons {
    display: flex;
    gap: 20px;
  }

  .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
  }

  .icon-heart {
    color: red;
  }

  .user-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #262626;
    margin-left: 10px;
  }

  .username {
    font-weight: 600;
    font-size: 24px;
  }

  .dot-separator {
    margin: 0 4px;
    color: #888;
  }

  .timestamp {
    color: #888;
  }

  .caption {
    font-size: 24px;
    line-height: 1.7;
  }

  .no-footer-margin {
    margin-bottom: 0;
    padding-bottom: 0;
  }
