/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

* {
  box-sizing: border-box;
}
body {
  font-family: "The girl next door", cursive;
  margin: 10;
  background-image: url('https://pin.it/2Yy5tBHVP.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
header {
  background: linear-gradient(120deg, #DE3E61, #D13249);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}
section {
  background: #FFBDCA;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  text-align: center;
}

div {
  background-color: #FFBDCA;
}

footer {
  padding: 24px;
  text-align: center;
  background: #e8edf4;
  font-size: 0.9rem;
}



