body {
  font-family: "Source Sans 3", sans-serif;
  min-height: 100vh;
}

header{
    display: flex;
    justify-content: space-between;
    width:21.5rem;
    height: 5rem;
    border-bottom:1px solid #C6C6C6;
    align-items: center;
    padding:1rem 0.5rem;
    width: 100%;
}
.logo{
    width: 8rem;
    height: 3rem;
}

.user{
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius:50%;
    object-fit: cover;
    margin-right: 0.5rem;
}

.poster{
    width: 23rem;
    height: 2rem;
    display: flex;
    align-items: center;
    gap:0.4rem;
    padding:2rem 0.5rem;
}

.poster-avatar{
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    object-fit: cover;
}

.post{
    width: 23rem;
    height: 23rem;
    object-fit: cover;
}

.interaction-icons{
    display: flex;
    width:6.5rem;
    height: 2rem;
    align-items: center;
    gap:1rem;
    padding: 1.5rem 0.5rem 1rem;
}

.icons{
    width:1.5rem;
    height: 1.5rem;
}
.like-count{
    padding-left: 0.5rem;
}
.info{
    padding-left:0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width:370px) {
 body{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #C6C6C6;
 }
 .container{
    background-color: #FFFFFF;
 }   
}