/* Reset */
* {
    vertical-align: baseline;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    letter-spacing: 0;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    margin: 0;
    display: flex;
    place-items: center;
    flex-direction: column;
    min-width: 320px;
    scrollbar-gutter: stable;
  }
  
  main,
  header,
  footer {
    width: 100%;
  }
  
  header {
    position: relative;
    z-index: 2;
  }
  
  strong {
    font-weight: 800;
  }
  :root {
    --color_primary: #c4d43a;
    --color_primary_opacity01: rgba(197, 212, 58, 0.1);
    --color_primary_mobile_menu: rgb(255, 255, 250);
    --color_secondary: #2f3184;
    --color_white: #ffffff;
    --color_black: #000000;
    --color_bg_primary: linear-gradient(
      180deg,
      rgba(228, 236, 108, 0.09) 0%,
      rgba(196, 212, 58, 0.09) 100%
    );
    --color_primary_faded: #f6f9e2;

  
    /* fluid border radius */
    /* min 410px and max 1920px screen */
    --fluid-radius-32-72: clamp(32px, 21.1391px + 2.649vi, 72px);
  }
  
  /* base styles */
  a {
    text-decoration: none;
    color: unset;
    cursor: pointer;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  button {
    font-family: "Sora";
    font-weight: 800;
  }
  
  button:hover {
    cursor: pointer;
  }
  
  h2 {
    font-size: 44px;
  }
  
  section {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  