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

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #090b1a;
  color: white;
}

#main {
  width: 90%;
  margin: 90px auto;
}

.container {
  background-color: #1b1938;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  border-radius: 10px;
}

.content {
  padding: 30px 0;
}

.content ul {
  list-style-type: none;
}

.content h1 {
  padding: 35px 30px 20px;
  font-size: 30px;
}

.content h1 span {
  color: #aa5cdb;
}

.content h2 {
  font-size: 20px;
}

.content h1,
.content h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.content h1,
.content h2,
.content p {
  text-align: center;
}

.content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: 0 35px 10px;
  line-height: 1.7;
}

.content .status li {
  margin-top: 10px;
}

.content .status p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Lexend Deca", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  margin-top: 3px;
}

.image {
  width: 100%;
  height: 250px;
  background-image: url("images/image-header-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.image .layer {
  background-color: #58018e;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 15px;
}

.attribution a {
  color: #3e52a3;
}

@media (min-width: 51.2em) {
  body {
    min-height: 100vh;
  }

  #main {
    width: 1200px;
    margin: auto;
  }

  .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .content {
    padding: 50px;
  }

  .content h1 {
    padding: 35px 30px 20px;
    font-size: 36px;
  }

  .content h2 {
    font-size: 23px;
  }

  .content h1,
  .content p {
    text-align: left;
  }

  .content p {
    color: rgba(255, 255, 255, 0.6);
  }

  .content .status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .content .status li {
    margin-top: 60px;
  }

  .image {
    width: 100%;
    height: auto;
    background-image: url("images/image-header-desktop.jpg");
    background-repeat: no-repeat;
    border-radius: 0 10px 10px 0;
  }

  .image .layer {
    border-radius: 0 10px 10px 0;
  }

  .attribution {
    font-size: 1em;
  }
}
