body,html {
    margin: 0;
    padding: 0;
}
* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, sans-serif;
}
.biba{
  position: absolute;
  bottom: 10px; 
  left: 0; 
  width: 100%; 
  text-align: center; 
  color: rgb(0, 0, 0);
  font-size: 60px;
}

header {
    width: 99vw;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(192, 192, 192, 0.5);
    padding: 20px 10px;
}



header a {
  color: #212121;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  border-radius: 4px;
}



header a:hover {
  background-color: #9c864c;
  color: #212121;
}


nav {
  display: flex;
  align-items: center;
  }

.circle {
  width: 100px; /* Ширина элемента */
  height: 100px; /* Высота элемента */
  background-color: rgb(0, 0, 0); /* Цвет круга */
  border-radius: 50%; /* Скругление углов до 50% */
}
#footer {
    text-align: center;
  background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
  min-height: 200px;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 10px;
}
#footer h2 {
  color: white;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
#footer p {
  color: white;
  font-size: 1.3rem;
}


@media (max-width: 480px) {
  .biba{
    font-size: 20px;
    transform: translateY(-100px)
  }
  .circle {
    width: 50px; /* Ширина элемента */
    height: 50px; /* Высота элемента */
    background-color: rgb(0, 0, 0); /* Цвет круга */
    border-radius: 50%; /* Скругление углов до 50% */
  }
}