.tags{
    font-size: 20px;
    font-family: var(--font-dm-sans);
    font-weight: 700;
}

.tagsSelect{
    margin-left: 15px;
    border: none;
    cursor: pointer;
    color: white;
    background-color: #901C1C;
    font-size: 18px;
    padding: 10px;
}

.tagsSelect option{
    background-color: #901C1C;
    position: absolute;
}

.mediasGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 100px;
    row-gap: 30px;
    margin-top: 60px;
}

.mediaPicture{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.mediaContent{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #901C1C;
    font-family: var(--font-dm-sans);
    font-size: 24px;
}

.mediaContent p{
    padding: 0;
    margin: 0;
}

.mediaLikes{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background-color: transparent;
    border: none;
    font-size: 20px;
}

.liked{
    color: #901C1C;
}

.heartIcon{
    width: 22.5px;
    height: 22.5px;
}