@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600&display=swap");
:root {
  color-scheme: light;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --color-page-start: #f3f3f3;
  --color-page-end: #ffffff;
  --color-red: #eb1c3b;
  --color-red-soft: #ff647b;
  --color-white: #ffffff;
  --color-muted: #999ea6;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  display: grid;
  place-items: center;
  margin: 0;
  background: var(--color-page-start);
  color: var(--color-red);
  font-family: var(--font-body);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}
