body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header, footer {
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

a {
    text-decoration: none;
    color: #333;
}

main {
    width: 80%;
    margin: 20px auto;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 80%;
    margin: 20px auto;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.photo-gallery img {
    width: 30%; /* Размеры могут быть изменены в зависимости от желаемого размера изображений */
    height: auto;
    border-radius: 5px; /* Для скругленных углов, если нужно */
}

article {
    background-color: white;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

article img {
    max-width: 30%;
    height: 30%;
}

.date {
    color: #888;
    font-size: 0.9em;
}

.like-button {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #333;
}

.like-button .fas {
    margin-right: 5px;
    cursor: pointer;
}

.like-button .like-count {
    font-size: 1em;
}

.video-container {
    display: flex;
    justify-content: center;
    width: 60%; /* или другая ширина в зависимости от вашего дизайна */
    margin-bottom: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}