@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap');

:root {
  --color-primary: rgba(218, 2, 42, 1);
  --color-gray-1: rgba(159, 157, 157, 1);
  --color-gray-2: #dfdfdf;
  --color-gray-3: #f4f3f3;
  --color-gray-4: #fafafa;
  --color-pink: #fbe6ea;
  --foreground-primary: rgba(14, 9, 10, 1);
  --background-1: #ffffff;
  --background-2: rgba(250, 250, 250, 1);
  --background-3: rgba(250, 250, 250, 1);
  --border-radius: 16px;
}

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

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

body {
  background: #ffffff;
  font-family: 'Mulish', 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;
  align-items: center;
}

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;
}

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

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

.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;
  }
}
