@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/Gelica-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../assets/fonts/DMSans-Variable.ttf') format('truetype-variations'),
       url('../assets/fonts/DMSans-Variable.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

html, body {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}

a {
  color: #ff303b;
  text-decoration: none;
}
a:hover {
  color: #ff505a;
}

button {
  font-family: 'DM Sans', Arial, sans-serif;
  cursor: pointer;
}

input {
  font-family: 'DM Sans', Arial, sans-serif;
}

[hidden] {
  display: none !important;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: .35; }
  50%      { transform: scale(1.04); opacity: .15; }
}
