/* responsiveness */
/* mobile-first */
.page {
  width: 100%;
  margin: 0 auto;
}

/* desktop and up */
@media (min-width: 768px) {
  .page {                 /* note the dot */
    max-width: 50vw;      /* or a fixed cap if you prefer */
    margin: 0 auto;       /* center it */
  }
}



html, body {
    margin: 0 auto;
    padding: 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;

}

header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid lightgrey;

    align-items: center;
    
}

header .avatar {
    margin-right: 20px;
}

h1 {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0px;
}
h2 {
    margin-top: 0px;
    font-weight: 300;
    font-size: 1.1rem;
}
h3 {
    margin: 10px auto;
}

.logo {
    display: block;
    height: auto;
    width: 127px;
    max-height: 80px;
    margin-left: 20px;
    margin-bottom: 10px
}

.post-section .avatar {
    margin-left: 15px;

}

.avatar {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    width: auto;
    max-height: 50px;
    padding: 0px;
}

.name-avatar-cluster {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

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

.icon-set {
    display: flex;
}

.icon-set img {
    aspect-ratio: 1;
    width: 40px;
    padding: 15px;
}

.likes,
.visible-comment {
    padding-left: 15px;
    margin-bottom: 0;
}

.visible-comment {margin-bottom: 18px;}

.bold {
    font-weight: 700;
}

.spacer {
    background-color: lightgrey;
    height: 30px;
}

.heart, .dm, .comment {
    cursor: pointer;
}

.heart:hover, .dm:hover, .comment:hover {
    opacity: 0.70;
}