html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  background: rgb(25, 25, 25);
  color: white;
}

header {
    color: rgb(255, 255, 255);
}

a {
    color: rgb(171, 152, 255);
    text-decoration: none;
}

.content {
    height: 1000px;
  }

  .fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #434343;
    padding: 0.9%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); 
    display: flex; 
    justify-content: space-around;
  }

  .fixed-buttons button {
    background-color: #ffffff00;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .fixed-buttons img {
  width: 35px; /* Фиксированная ширина */
  height: 35px; /* Фиксированная высота */
  object-fit: contain; /* Сохраняет пропорции изображения */
}