* {
  margin: 0;
  padding: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
  height: 100vh;
  background-image: url("../img/marie-staggat-background.webp");
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contentbox {
  max-width: 400px;
  max-height: 280px;
  margin: 2rem;
  background-color: #ffffff;
  color: #ed5f9c;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.5rem;
  -webkit-box-shadow: 2px 1px 37px 4px #ed5f9c;
          box-shadow: 2px 1px 37px 4px #ed5f9c;
}

h1,
p {
  text-align: center;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}
p a {
  color: #2d56a5;
  text-decoration: none;
}