:root {
  --white:#fff;
  --black: #000;
  --font-color-base: #666;
  --font-color-dark: #212529;
  --font-color-light: #b0aebe;
  --font-color-link: #57a6ff;
  --bg-color-light: #f5f8fc;
  --shadow-light: #ebf0f7;
  --footer-base: #2e2b45;
  --success: #64ecf5;
  --danger: #ff8b8d;
  --grad-1: #a1ecff;
  --grad-2: #7dbcff;

  --size-5: 0.313rem;
  --size-10: 0.625rem;
  --size-14: 0.875rem;
  --size-16: 1rem;
  --size-18: 1.125rem;
  --size-20: 1.25rem;
  --size-25: 1.563rem;
  --size-30: 1.875rem;
  --size-40: 2.5rem;
  --size-50: 3.125rem;
  --size-60: 3.75rem; 
  --size-80: 5rem;
  --size-100: 6.25rem;
  --size-150: 9.375rem;
  --size-200: 12.5rem;
  --size-600: 37.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--font-color-base);
  margin: 0;
  padding: 0;
}

a { text-decoration: none; }

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

*,
::after, 
::before {
  box-sizing: border-box;
}

h1 { 
  font-size: var(--size-50);
  margin: 0;
}

h1, h2, h3, h4 { 
  color: var(--font-color-dark);
  font-weight: 600;
}

h2 { 
  font-size: var(--size-30);
  margin: 0;
}

h4 { font-size: var(--size-20); }


@keyframes slide-in {
  from{
    transform: translateY(100%);
  }
  to{
    transform: translateY(0%); 
  }
}

@keyframes fade-in {
  from{ 
    opacity: 0;
  }
  to{
    opacity: 100%;
  }
}
