img {
    max-width: 100%;
    max-height: 100%;
}

h1 {
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 20px;
}

h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
}

/* Стили для публикаций */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: contain;
    background-color: #f8f9fa;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
}

.card-text {
    font-size: 16px;
    line-height: 1.6;
}

.comment-card {
    background-color: #f8f9fa;
}

.comment-card:hover {
    background-color: #e9ecef;
}

.text-muted {
    font-size: 14px;
}

small {
    font-size: 12px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}
