/* Основні стилі */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Заголовок */
header {
    background-color: #6a0dad; /* Фіолетовий */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
}

/* Основний контейнер */
.container {
    display: flex;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Бокова панель */
aside {
    flex: 1;
    max-width: 250px;
    margin-right: 20px;
    background-color: #f8f4ff; /* Світло-фіолетовий */
    padding: 15px;
    border-radius: 10px;
}

aside img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

aside h2 {
    color: #6a0dad; /* Фіолетовий */
}

/* Основний контент */
main {
    flex: 2;
}

/* Стилі для заголовків */
h2 {
    border-bottom: 2px solid #6a0dad;
    padding-bottom: 5px;
    color: #6a0dad;
}

/* Стилі для посилань */
a {
    color: #6a0dad;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Футер */
footer {
    text-align: center;
    padding: 10px;
    background: #6a0dad;
    color: white;
    margin-top: 20px;
    border-radius: 0 0 10px 10px;
}
.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a svg {
    fill: white;
    transition: transform 0.2s, fill 0.3s;
}

.social-icons a:hover svg {
    fill: #ffcc00; /* Колір при наведенні */
    transform: scale(1.2);
}
