* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
section {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: big john;
  width: 100%;
  height: 100vh;
}

h2 {
  font-size: 60px;
  background: #eee;
  padding: 8px 24px;
  border-radius: 16px;
}
p {
  color: hsl(209, 61%, 16%);
}

.sec-1 {
  background-image: url(./assets/img-1.jpg);
  background-size: cover;
}
.sec-2 {
  background: #cbb7af;
}
.sec-3 {
  background-image: url(./assets/img-2.jpg);
  background-attachment: fixed;
  background-size: cover;
}
.sec-4 {
  background: #d491a2;
}
.sec-5 {
  background-color: #a5d0e5;
}
