@font-face {
  font-family: ABCMonumentGrotesk;
  src: url('./font/ABCMonumentGrotesk-Regular.woff2') format("woff2");
  src: url('./font/ABCMonumentGrotesk-Regular.woff') format("woff");
  src: local('☺︎'),
    url('./font/ABCMonumentGrotesk-Regular.woff2') format("woff2");
    url('./font/ABCMonumentGrotesk-Regular.woff') format("woff");
  }
@media screen and (max-device-width: 480px) {
  @font-face {
    font-family: ABCMonumentGrotesk;
    src: url('./font/ABCMonumentGrotesk-Regular.woff2') format("woff2");
    src: url('./font/ABCMonumentGrotesk-Regular.woff') format("woff");
}}

:root {
  --gutter: 10px;
  --yellow: #EBFF00;
}
html {
	font-size: clamp(10px, calc(9px + .21vw), 14px);
	line-height: 1.17;
	font-family: ABCMonumentGrotesk, Arial, Helvetica, sans-serif;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}
body {
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p, a, a:visited, a:hover, a:active {
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	margin: 0;
	text-decoration: none;
}
.text-m {font-size: 1.5rem; line-height: 1.1;}
.text-l {font-size: 2.1rem; line-height: 1.1;}
.text-xl,h1 {font-size: 4.5rem; line-height: 1.05;}

.mobile-only {display: none;}

@media only screen and (max-width: 1000px) {
  .text-m {font-size: 1.5rem; line-height: 1.1;}
  .text-l {font-size: 2.1rem; line-height: 1.1;}
  .text-xl,h1 {font-size: 4rem; line-height: 1.05;}
}

@media only screen and (max-width: 800px) {
  .mobile-only {display: block;}
}

@media only screen and (max-width: 400px) {
  .text-m {font-size: 1.5rem; line-height: 1.1;}
  .text-l {font-size: 2.1rem; line-height: 1.1;}
  .text-xl,h1 {font-size: 3rem}
}