html,
body,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f90;
}

#name {
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  color: white;
  position: absolute;
  bottom: 0;
  font-size: 64pt;
  margin: 1rem;
}

@media screen and (max-width: 700px) {
  #name {
    font-size: 32pt;
  }
}

