:root {
  --primary-color: #FF6F59;
  --secondary-color: #fff;
  --text-color: #1a1e1c;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.common-navigation {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 2px 6px 2px rgba(60, 64, 67, 0.15);
  z-index: 10;
}

.title-and-subtitle {
  display: flex;
  flex-direction: column;
  gap: 10px;

  & > *:nth-child(1) {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);

    @media (1024px <= width) {
      font-size: 24px;
    }
  }

  & > *:nth-child(2) {
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
    color: var(--text-color);

    @media (1024px <= width) {
      font-size: 48px;
    }
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;

  @media (min-width: 640px) {
    max-width: 640px;
  }

  @media (min-width: 768px) {
    max-width: 768px;
  }

  @media (min-width: 1024px) {
    max-width: 1024px;
  }

  @media (min-width: 1280px) {
    max-width: 1280px;
  }

  @media (min-width: 1536px) {
    max-width: 1536px;
  }
}
