body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: white;
  background: black;
  padding: 4rem;
  font-size: 18px;
}

@media screen and (max-width: 900px) {
  body {
    padding: 3rem;
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  body {
    padding: 2rem;
    font-size: 18px;
  }
}

.main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: self-end;
}

svg {
  width: 100%;
  height: auto;
}

hr {
  color: white;
  width: 100%;
  bottom: 10rem;
}

.text-uppercase {
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  float: right;
  margin-right: 3em;
}

.b {

  box-sizing: border-box;
  width: 100%;
}

.c {
  margin-top: 1em;

  box-sizing: border-box;
  width: 50%;


  p {
    float: right;
    margin-right: 3em;
    margin-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .text-uppercase {
    margin-right: 1em;
  }

  .b {
    margin-top: 1em;
  }

  .c {
    p {
      margin-right: 1em;

    }
  }
}

@media screen and (max-width: 400px) {
  .text-uppercase {
    margin-right: 0em;
    float: left;
  }

  .b {
    margin-top: 1em;
  }

  .c {
    width: 100%;

    p {
      margin-right: 0.5em;

    }
  }
}