html
{
  height: 100%;
  font: 16px/1.4 'Poiret One', cursive;
}

body
{
  height: 100%;
  background: url("photo01.jpg") center center / cover no-repeat;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ddd;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
}

body::before
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, .6);
}

main
{
  position: relative;
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  font-size: 3rem;
}

a[href]
{
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

h1
{
  font-size: inherit;
  cursor: default;
  white-space: nowrap;
}

i
{
  margin: 2rem 1rem;
}

@media (max-width: 499px)
{
  html
  {
    font-size: 12px;
  }
}
