body {
  margin: 0;
  padding: 0;
  background-color: #ae7e9b;
  font-family: 'Quicksand', sans-serif;
  background-color: white;
  min-height: 100vh;
}

.background-image {
  background: url(images/A701FA1A-D7CD-4083-95A6-F11230226FCD_1_102_o.jpeg)
    no-repeat center;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: scroll;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content {
  margin: 10% 0;
  padding: 1rem;
  border-radius: 3%;
  background-color: white;
  width: 50%;
  max-width: 31rem;
  border: 0.3em solid #ae7e9b;
  flex: 1 1 auto;
}

.heading {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.heading img {
  height: 7rem;
  margin: 1rem auto;
}

h1 {
  font-size: 2rem;
  margin: 0;
  padding: 0 0 2rem 0;
  text-align: center;
  color: #ae7e9b;
  border-bottom: 0.25rem solid #ae7e9b;
}

.links {
  font-size: 2rem;
}

.links ul {
  flex-direction: column;
  padding: 0;
}

.links li {
  list-style: none;
  margin: 1rem 0;
  text-align: center;
}

li a {
  text-decoration: none;
  color: #ae7e9b;
}

li a:visited {
  text-decoration: none;
  color: #ae7e9b;
}

li a:hover {
  font-weight: 600;
}

footer {
  background-color: white;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30%;
  max-width: 15rem;
  padding: 0.5rem;
  color: #ae7e9b;
  text-align: center;
  border-radius: 3%;
  border-top: 0.2em solid #ae7e9b;
  border-left: 0.2em solid #ae7e9b;
  border-right: 0.2em solid #ae7e9b;
}

@media (max-width: 50rem) {
  .heading img {
    height: 5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .links {
    font-size: 1.5rem;
  }

  footer {
    font-size: 1.5rem;
  }
}

@media (max-width: 30rem) {
  .heading img {
    height: 3rem;
  }

  h1 {
    font-size: 1.25rem;
  }

  .links {
    font-size: 1rem;
  }

  footer {
    font-size: 1.5rem;
  }
}
