@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --color-primary: #da022a;
  --color-gray-1: #9f9d9d;
  --color-gray-2: #dfdfdf;
  --color-gray-3: #f4f3f3;
  --color-gray-4: #fafafa;
  --color-pink: #fbe6ea;
  --foreground-primary: #0e090a;
  --border-radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--color-gray-4);
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--foreground-primary);
  -webkit-font-smoothing: antialiased;
  container: body / inline-size;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

h1 {
  font-size: 22px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-size: 18px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 0;
}

p.l-1 {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0;
}

p.l-2 {
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0;
}

p.l-3 {
  font-size: 12px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: 0;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

.red {
  color: var(--color-primary);
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  animation: scale 5s linear infinite;
  img {
    width: 167px;
    height: 167px;
  }

  @container (max-width: 576px) {
    img {
      width: 80px;
      height: 80px;
    }
  }
}

@keyframes scale {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.3;
  }

  100% {
    scale: 1;
  }
}
