* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: rgb(171, 171, 123);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.header {
  display: flex;
  justify-content: center;
  gap: 150px;
  height: 25vh;
  text-align: center;
  align-items: center;
}
h1 {
  font-family: "Monsieur La Doulaise", cursive;
  font-size: 120px;
  font-weight: lighter;
}
hr {
  width: 700px;
  margin: 0 auto;
  border-bottom: 3px solid black;
}

nav ul {
  list-style-type: none;
}

nav a {
  color: black;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
p {
  background: transparent;
  font-size: 20px;
  padding: 35px;
}
.pica {
  height: 45vh;
  border: 3px solid black;
  background-color: rgb(214, 214, 172);
  margin: 60px;
}
footer {
  height: 10vh;
  padding: 10px;
  text-align: center;
}
footer img {
  width: 25px;
}
@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 300px;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  h1 {
    font-size: 60px;
  }
  .pica {
    max-width: 100%;
    height: auto;
  }
}
