/* 
0- 600px:    Phone
600-900px:   Tablet portrait
900-1200px:  Tablet landscape
1200-1800:   Normal styles
1800+:       Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

*/
:root {
  --color-primary: #659999;
  --color-primary-dark: #334d4d;
  --color-primary-light: #a3c2c2;
  --color-secondary: #f4791f;
  --color-secondary-dark: #7a3d10;
  --color-secondary-light: #f8af79;
  --gradient-primary: linear-gradient(
    to right bottom,
    var(--color-primary),
    var(--color-secondary)
  );
  --gradient-primary-switched: linear-gradient(
    to left bottom,
    var(--color-primary),
    var(--color-secondary)
  );
  --color-white: #fff;
  --color-black: #000;
  --color-gray-dark-1: #333;
  --color-gray-dark-2: #777;
  --color-gray-dark-3: #ddd;
  --color-gray-light-1: #f7f7f7;
  --color-gray-light-2: #eee;
  --color-gray-light-3: #ddd;
  --color-gray-light-4: #ccc;
  --color-transparent-white: rgba(247, 247, 247, 0.9);
  --font-size-default: 1.6rem;
  --border-radius-circle: 50%;
  --border-radius-small: 0.3rem;
  --border-radius-medium: 1rem;
  --border-radius-huge: 50rem;
  --box-shadow-tiny: 0 1rem 4rem rgba(0, 0, 0, 0.1);
  --box-shadow-small: 0 1rem 3rem rgba(0, 0, 0, 0.15);
  --box-shadow-medium: 0 1.5rem 4rem rgba(0, 0, 0, 0.12);
  --box-shadow-big: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}
@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}
@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  color: var(--color-gray-light-1);
  scroll-behavior: smooth;
}

body {
  background-image: var(--gradient-primary);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: relative;
}

.coming-soon {
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;

  h1 {
    font-weight: 100;
  }
}

.loading::after {
  display: inline-block;
  animation: dotty steps(1, end) 3s infinite;
  content: "";
  min-width: 1.5em; /* Reserves space for the dots */
  text-align: left;
}

@keyframes dotty {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
