body {
  padding-top: 60px; /* Добавляем отступ сверху, чтобы шапка не перекрывала контент */
  margin: 0;
  font-family: sans-serif;
}

.main-header {
  background-color: #2c3e50;
  color: white;
  padding: 0 20px;
  position: fixed; /* Фиксируем шапку вверху */
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.main-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.main-header li {
  margin-right: 20px;
}

.main-header a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.main-header a:hover {
  background-color: #34495e;
}
