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

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(to bottom right, rgb(222, 145, 201), blue);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  flex: 1;
}

.header h1 {
  font-size: 2.5em;
}

p {
  font-size: 1.5em;
}

img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  align-self: flex-end;
}