body {
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
    padding-top: 10px;
}


.container {
    background-color: #FCFCFC;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-content: center;
    width: 100%;
}

.card {
    width: 500px;
    margin: auto;
    background-color: #FCFCFC;
    border: 1px solid #DEDEDE;
    box-shadow: -1px 7px 8px -5px rgba(0, 0, 0, 0.14);
    border-radius: 5px;
}

.avatar-container {
    display: flex;
    flex-direction: row;
}

.avatar {
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.user-info {
    margin-top: 20px;
}

.user-name {
    font-weight: 500;
    font-size: 14px;
    width: 77px;
    height: 17px;
    margin: 0px;
}

.user-location {
    font-size: 10px;
    width: 117px;
    height: 12px;
    margin: 0px;
}


.swiper {
    height: 250px;
}

.carousel-image {
    width: 100%;
}

.swiper-button-prev::after {
    color: transparent;
}

.swiper-button-next::after {
    color: transparent;
}

.icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
}

.icon-div {
    display: flex;
    flex-direction: row;
    text-align: left;
    width: 100px;
    padding: 4px;
}

.icon-div button {
    outline: none;
    border: none;
    background-color: transparent;
}

.icon-div-save button {
    outline: none;
    border: none;
    background-color: transparent;
    color: #000000;
    padding: 4px;
}

#p {
    background-color: transparent;
}


.icon-button {
    width: 30px;
    height: 30px;
    background-color: bisque;
}

.heart {
    background: url(/assets/heart.svg);
    width: 30px;
    height: 30px;
}


.post-caption {
    margin: 0 auto;
    font-size: 12px;
    width: 477px;
    padding-left: 20px;
}

.post-caption p {
    margin: 0 auto;
}


.comment-section {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 477px;
    height: 120px;
    overflow-y: auto;
    padding-left: 20px;
}

#comments {
    font-weight: 600;
    font-size: 12px;
}

#firstComment {
    display: flex;
    flex-direction: row;
    font-weight: 600;
}

.comments-form {
    display: flex;
    align-items: center;
    align-self: flex-end;
    margin: 0 auto;
    background-color: #F1F1F1;
    width: 90%;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;

}

.input {
    background-color: #F1F1F1;
    text-align: left;
    width: 477px;
    padding: 2px;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.post {
    color: #3D8AFF;
    background-color: #F1F1F1;
    outline: none;
    border: none;
    width: 39px;
    height: 15px;
    justify-self: flex-end;
    margin-right: 10px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

/* media-query */

@media(max-width:500px) {
    body {
        padding: 20px;
    }

    .container {
        display: flex;
        align-content: space-around;
    }

    .card {
        margin: 0 auto;
        width: 100%;
    }

    .post-caption {
        width: 100%;
    }

    .comment-section {
        width: 100%;
    }

    .input {
        width: 100%;
    }
}