@font-face {
  font-family: Jammy;
  src: url(../Jammy-Regular.otf);
}

:root {
  --color-white: #f2e4e1;
  --color-black: #060819;
}

body {
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;

  min-width: 100vw;
  max-width: 100vw;
  width: 100vw;

  position: absolute;
  top: 0;
  left: 0;

  overflow: hidden;

  padding: 0;
  margin: 0;

  background-color: var(--color-white);
  color: var(--color-black);

  font-family: Jammy, cursive;
}

main {
  height: 100%;
  width: 100%;

  position: relative;
  top: 0;
  left: 0;
}

main#main--desktop {
  display: none;
}

a.desktop-link {
  font-family: 'Jammy', cursive;
  font-size: 1.8rem;

  color: var(--color-black);
  text-decoration: none;

  border-image-source: url(./site_resources/img/borders/Border1.png);
  border-image-outset: 4px;
  border-image-slice: 12 fill;
  border-image-repeat: round;
  border-image-width: 18px;

  max-height: 2rem;

  padding: 1.2rem 1.8rem;

  cursor: pointer;
}

a.desktop-link:visited {
  color: var(--color-black);
}