body {
  background-color: black;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.container {
  height: 100%;
  width: 550px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.images-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gradient-background {
  background: linear-gradient(#2369C9, #2369C9, #fff, #fff);
}


.logo {
  display: block;
  width: 100%;
  max-width: 550px;
  margin-bottom: -765px;
}

.dragons-image {
  width: 550px;
  display: block;
}

.title {
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 25px;
  padding: 2rem;
}

.copyright {
  width: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
}

/* mobile overrides */
@media screen and (max-width: 600px) {
  body {
    width: 100%;
  }

  .container {
    width: 100%;
  }

  .images-container {
    width: 100%;
  }

  .dragons-image {
    width: 100%;
  }

  .copyright {
    width: 100%;
  }
}