@import url('https://fonts.googleapis.com/css2?family=Nobile&display=swap');

html, body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background: radial-gradient(#000, #444);
  background-color: #444;
  color: #ddd;
  font-family: 'Nobile', sans;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.small {
  font-size: 0.7em;
}

.not-visible {
  visibility: hidden;
}

div {
  background: radial-gradient(#444, #000);
  text-align: center;
  border-radius: 50%;
  padding: 15vh;
}

#mail::before {
  content: attr(data-name);
}

#mail::after {
  content: attr(data-domain) "." attr(data-tld);
}


.on-portrait {
  display: none;
}

@media all and (orientation:portrait) {
  .not-visible {
    display: none;
  }

  .on-portrait {
    display: unset;
  }
}
