:root {
  --white: #FFFFFF;
  --black: #000000;
  --primary-pink: #FF299D;
  --primary-blue: #220149;
  --txt-color: #4A5565;
  --width-base: 1440;
  --width-current: 100vw;
  --width-multiplier: var(--width-current) / var(--width-base);
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(50 * var(--width-multiplier));
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  color: var(--txt-color, #4A5565);
  background-color: var(--white, #FFFFFF);
  font: 400 calc(16 * var(--width-multiplier))/1.4 'Neris';
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

h1 {
  font: 900 calc(56 * var(--width-multiplier))/1.2 'Neris';
}

h2 {
  font: 900 calc(48 * var(--width-multiplier))/1.2 'Neris';
}

h3 {
  font: 900 calc(32 * var(--width-multiplier))/1.2 'Neris';
}

h4 {
  font: 900 calc(24 * var(--width-multiplier))/1.2 'Neris';
}

h5,
h6 {
  font-family: 'Neris';
  font-weight: 900;
  line-height: 1.2em;
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

input:focus-visible {
  outline: none;
}

.container {
  width: 100%;
  padding: 0 calc(80 * var(--width-multiplier));
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--width-multiplier));
  width: -moz-max-content;
  width: max-content;
  padding: calc(16 * var(--width-multiplier)) calc(32 * var(--width-multiplier));
  border: 1px solid transparent;
  border-radius: calc(24 * var(--width-multiplier));
  background-color: transparent;
  font: 600 calc(20 * var(--width-multiplier))/1.2 'Neris';
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.button svg {
  display: block;
  width: calc(24 * var(--width-multiplier));
  height: calc(24 * var(--width-multiplier));
  pointer-events: none;
}

.button:hover:not(:disabled) {
  cursor: pointer;
}

.button:disabled {
  opacity: 0.4;
}

.button-primary {
  color: var(--white, #FFFFFF);
  background-color: var(--primary-pink, #FF299D);
}

.button-primary:hover {
  box-shadow: 0 0 16px rgba(255, 41, 157, 0.5);
  transform: scale(0.95);
}
