/* Общие стили для всего тела страницы */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0; /* светлый фон */
  color: #333; /* цвет текста */
}

/* Шапка сайта */
.header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.container_header1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
a{
  color: inherit;
  text-decoration: none;
}
.header_text1 {
  font-size: 24px;
  margin: 0;
}

.header_list {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.header_item {
  cursor: pointer;
  font-size: 16px;

}

.header_item:hover {
  text-decoration: underline;
}

/* Заголовок и подзаголовок в шапке */
.container_header2 {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.header_title2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.header_text2 {
  font-size: 16px;
}

















/* Подвал сайта */
.footer {
  background-color: #222;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  border-radius: 10px;
}

.footer_list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.btn_footer {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: inherit;
  padding: 5px;
  transition: opacity 0.3s;
}

.btn_footer:hover {
  opacity: 0.7;
}

.footer_img {
  width: 45px;
  height: 45px;
  margin-bottom: 5px;
  border-radius: 5px;
}

/* Текст под иконками в футере */
.footer_text1 {
  font-size: 14px;
  text-align: center;
  margin: 0;
}





@media (max-width: 768px) {
  .header{
    height: 100px;
    font-size: 9px;
  }
  .header_list{
    display: inline;
    padding: 5px;
    text-align: center;
  }
  .header_item{
    font-size: 11px;
  }
  .header_title2{
    font-size: 9px;
  }
  .header_text2{
    font-size: 8px;
  }
  .header_text1{
    font-size: 11px;
  }
} 