@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Roboto:wght@400;500;700&family=Source+Code+Pro:wght@400;600;700&display=swap");
:root {
  --primary-color: #d0d0d0;
  --secondary-color: #0071e3;
  --font-clamp-text: clamp(0.75rem, 3vw, 1rem);
  --font-clamp-header: clamp(1.25rem, 3vw, 1.5rem);
  --font-h3-clamp: clamp(1.5rem, 3vw, 2rem);
  --font-family: "Poppins", serif;
  --reminder: yellow;
  --attention: red;
  --font-family: "Poppins", serif;
  --btn-color: rgb(253, 27, 27);
  --color-white: rgb(255, 255, 255);
  --color-black: rgb(12, 11, 11);
  --color-red: rgb(253, 27, 27);
  --bg-red-200: rgba(253, 27, 27, 0.2);
  --color-gray-300: rgba(128, 128, 128, 0.3);

  /* disabled */
  --color-disabled: #666666;
  --bgcolor-disabled: #cccccc;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/* .section__padding {
  padding: 2rem;
} */

body {
  font-family: var(--font-family);
  position: relative;
}
/* .container {
  max-width: 1200px;
  margin: 0 auto;
} */

/* animation entrance */
body {
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*  */
