html, body {
    margin: 0;
    padding: 0;
    font-family: "Source Sans 3", sans-serif;
}

.container .top-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;  
}

.main-logo {
    width: 140px;
    margin-left: 20px;
    margin-top: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    margin-left: 90px;
    margin-right: 20px;
    border-radius: 50%;
    margin-top: 5px;
}
.profile-section {
    margin-top: 10px;
}

.container .profile-section{
    border-top: 1px solid gray;
    display: flex;
}

.profile-section h2 {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}

.profile-section p {
    margin-top: 0px;
    margin-bottom: 0px;
}
.profile-section .avatar {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 20px;
    border-radius: 50%;
    margin-top: 8px;
}

.image-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    height: 400px;
    margin-left: 0;
    margin-right: 0;
}

.image-section .container .main-img {
    height: 400px;
    margin-top: 10px;
}

.interaction .container .likes {
    display: flex;
    justify-content: start;
    align-items: center;
}

.interaction .container img {
    width: 20px;
    height: 20px;
    margin-top: 20px;
    margin-left: 15px;
}

.likes  {
    margin-left: 15px;
    margin-top: 5px;
    font-weight: 600;
}

.user-name {
    margin-left: 15px;
    font-weight: 700;
}

.post-title {
    margin-left: 5px;
}

.icons:hover {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: pink;
    border: 4px solid pink;
}