@font-face {
  font-family: 'PPEditorial New';
  src: url('Assets/PPEditorialNew-Light.woff2') format('woff2'),
       url('Assets/PPEditorialNew-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  font-family: 'PPEditorial New', "Times New Roman", serif;
  color: #6C6C6C;
  background: #F6F5EF;
}

main {
  text-align: center;
  padding: 2rem;
}

h1,
p {
  font-size: 18pt;
  margin: 0;
  letter-spacing: normal;
  font-kerning: normal;
}

a {
  color: #000000;
  text-decoration: none;
}

p {
  margin-top: 0.2rem;
}

.mobile-break {
  display: none;
}

@media (max-width: 700px) {
  .mobile-break {
    display: block;
  }
}

::selection {
  background: #A5BB77;
  color: #CDF0D5;
  text-shadow: none;
}

::-moz-selection {
  background: #A5BB77;
  color: #CDF0D5;
  text-shadow: none;
}