body {
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Кнопка */
.home-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: orange;
    color: black;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.home-btn:hover {
    background-color: lightgreen;
}

/* Галерея */
.gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

.gallery a {
    flex: 0 0 auto;
}

.gallery img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Полоса прокрутки */
.gallery::-webkit-scrollbar {
    height: 10px;
}

.gallery::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.gallery-item h3 {
    margin: 0 0 10px 0;
    padding: 8px;
    background: orange;
    color: black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
}
.info-box {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-left: 5px solid orange;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-box h2 {
    margin-top: 0;
    color: orange;
}

.info-box p {
    color: #333;
    line-height: 1.6;
}
.donate-btn {
    display: inline-block;
    padding: 12px 25px;
    background: orange;
    color: black;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.donate-btn:hover {
    background: lightgreen;
}
