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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.wrapper {
  margin: 0 20px;
}

p {
  color: white;
}

a {
  text-decoration: none;
  color: white;
}

li {
  list-style: none;
}

.hidden {
  display: none;
}

header,
footer {
  height: 100px;
  background-color: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

footer {
  justify-content: space-between;
  padding: 0 150px;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

li a {
  color: white;
  transition: all 0.3s ease-out;
}

a:hover {
  color: #f3d4a6;
}

.backgraund {
  display: block;
  width: 100%;
}

.picture {
  position: relative;
}

.btn {
  z-index: 5;
  position: absolute;
  left: 50%;
  top: 45%;
  width: 7%;
  cursor: pointer;
}

.btn:hover {
  width: 8%;
}

.link {
  display: flex;
  gap: 30px;
}

.link.active {
  color: #f3d4a6;
}