html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #111;
  color: #fff;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Roboto Mono",
    monospace,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

.container{
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  box-sizing: border-box;
}

.container > * {
  margin-top: 0;
  }

.logo{
  width: min(56vw, 280px);
  height: auto;
  display: block;
  margin-top: 4px;
  margin-bottm: 24px;
  
  cursor: pointer;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(255,255,255,0.15));
}

.logo:active {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 16px rgba(255,255,255,0.12));
}

@media (max-width: 430px){
  .container{
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .logo{
    width: 56vw;
    max-width: 280px;
    margin-top: 4px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}

h1 {
  margin: 0 0 12px 0;
  font-size: 36px;
  letter-spacing: 0.12em;
}

.sub,
.loc,
.after {
  margin: 0 0 6px 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.email a {
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}

.email a:hover {
  opacity: 0.8;
}

/* iPhone polish */
@media (max-width: 430px) {
  h1 {
    font-size: 36px;
    letter-spacing: 0.14em;
  }

  .sub,
  .loc,
  .after {
    font-size: 14px;
    letter-spacing: 0.16em;
  }
}