* {
  margin: 0;
  padding: 0; }

*,
*::after,
*::before {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 50%; } }

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12); }

.content {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  color: white;
  background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12); }
  @media only screen and (min-width: 37.5em) {
    .content {
      width: 500px;
      height: auto;
      left: 50%;
      top: 3rem;
      transform: translateX(-50%);
      right: auto;
      bottom: auto;
      border-radius: 10px;
      color: black;
      background-color: rgba(255, 255, 255, 0.25);
      background-image: none; } }

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

.main {
  padding: 3rem 0; }

.footer {
  display: flex;
  justify-content: flex-end;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
  padding: 1rem 0; }

.logo {
  width: 100px;
  fill: white; }
  .logo rect {
    fill: white; }
  @media only screen and (min-width: 37.5em) {
    .logo {
      width: 150px;
      fill: black; }
      .logo rect {
        fill: black; } }

hr {
  border: none;
  border-bottom: 1px solid white;
  height: 0;
  width: 100%; }
  @media only screen and (min-width: 37.5em) {
    hr {
      border-bottom: 1px solid black; } }

.title {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  margin: 0; }

.subtitle {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem; }

.subtitle:not(:first-of-type) {
  margin-top: 3rem; }

.text {
  font-weight: 300;
  font-size: 2rem; }
