* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-color: #242625;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.footer {
  display: flex;
  position: relative;
  flex-direction: column;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: italic;
  color: #ffffff;
}

.header > h1 {
  font-style: normal;
  font-weight: 300;
  font-size: 50px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  flex-grow: 0;
  margin: 16px 0px;
}

