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

body {
  background-color: #1b1d25;
  font-family: sans-serif;
  transition: all ease 1s;
}

.bg-white {
  background-color: #ffe8e5;
}

header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
header .intro-text h1 {
  color: #f7c4c1;
  font-size: 50px;
  margin-bottom: 10px;
}
header .intro-text p {
  color: #f7c4c1;
  font-size: 22px;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100vh;
  margin: 10%;
}
section img {
  width: 90%;
  height: 70%;
  object-fit: cover;
}
section .page2 {
  text-align: center;
}
section .page2 h1 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #1b1d25;
}
section .page2 p {
  font-size: 16px;
  font-weight: 300;
  margin: 20px;
  color: #1b1d25;
}