@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap");

:root {
  --primary: #007d9c;
  --secondary: #34c5e9;
  --dark: #201f2b;
  --spacing: 2rem;
  --s-spacing: 0.5rem;
  --radius: 1rem;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Arial", sans-serif, monospace;
  font-size: 1rem;
  color: white;
}

h1 {
  font-size: 2rem;
  font-family: "Nunito", sans-serif, monospace;
}

#loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  text-align: center;
  padding: 2rem;
}

#loader #rubik {
  height: 10rem;
  width: 10rem;
  border-radius: 100%;
  background: url("../assets/rubik.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 300%;
}
