/*
  Global App CSS
  ----------------------
  Use this file for styles that should be applied to all components.
  For example, "font-family" within the "body" selector is a CSS property
  most apps will want applied to all components.

  Any global CSS variables should also be applied here.
*/

:root {
  --primary-color: #020024;
  --secondary-color: #8c5383;
}
body {
  margin: 0px;
  padding: 0px;
  background-color: var(--primary-color);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

html {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
button {
  outline: none;
  cursor: pointer;
}

::-moz-selection {
  background: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
}

* {
  animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
