/*Comic-Neue and Poppins*/
@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --color-primary: #f8b500;
  --color-secondary: #999999;
  --color-background: #1c1c1c;
  --color-text-light: #f2f2f2;
  --color-text-black: #1c1c1c;
  --background-light: linear-gradient(90deg, #fceabb, #f8b500);
  --background-blue: linear-gradient(90deg, #fceabb, #0d53bb);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  height: 100vh;
  background-color: var(--color-background);
  user-select: none;
}

::-webkit-scrollbar {
  display: none;
}

footer {
  width: 100vw;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
}

footer a {
  font-size: 13px;
  font-family: Poppins;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light);
  cursor: pointer;
  text-shadow: 0 0 20px var(--color-primary);
  transition: text-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

footer a:hover {
  text-shadow: 0 0 10px var(--color-primary);
  transform: scale(1.1);
}
