@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  --color-audacity: rgb(255, 224, 209);

  /*--header-color: rgb(255, 221, 159);*/

  --header-color: #fdfbfb;
  --header-drop-color : #f9f5f5;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

*
{
    box-sizing: border-box;
    margin: 0px;
    margin: 0px;

}

body
{
    font-family: poppins;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /*background: linear-gradient(#eceffe, #ebefff);*/
    background-color: white;
}


@media screen and (max-width: 450px) 
{
  input,
  textarea,
  button,
  select,
  a 
  {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  a:focus,a:visited,a:active
  {
    outline: none;
  }
  
  *{
      -webkit-tap-highlight-color: transparent;
  }
}




