@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Roboto:wght@100;300;400;500;700;900&display=swap");

:root {
  --primary-color: #181818;
  --secondary-color: #282828;
  --background-color: #1d1d1d;

  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey: #909096;
  --color-grey-stroke: #3b3b3b;
  --color-accent: #64ffda;

  --text-roboto: "Roboto", sans-serif;
  --text-righteous: "Righteous", cursive;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--background-color);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =====================
   FOOTER
   ===================== */

footer {
  background-color: var(--background-color);
  color: var(--color-white);
  width: 100%;
  font-family: var(--text-roboto);
}

.footer__content {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  position: relative;
}

.footer__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

.footer__copyright {
  font-size: 14px;
  color: var(--color-grey);
}
