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

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

/*--------------------General Styles--------------------*/
:root {
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

  --color-primary: #ffffff;
  --color-secondary: #73eedc;
  --color-tertiary: rgb(25, 118, 210);

  --color-background-primary: #000;
  --color-background-secondary: rgb(62, 62, 63);
}

* {
  font-family: var(--font-primary);
  scroll-behavior: smooth;
}

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

/*--------------------Not Found Section--------------------*/
.notfound {
  height: 100vh;
  width: 100vw;

  background-color: var(--color-background-primary);
}

.notfound__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  height: 100%;
}

.console-container {
  display: block;
  white-space: nowrap;

  font-weight: 300;
  font-size: 3rem;
  color: var(--color-secondary);

  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: var(--color-background-primary);
  border: 1px solid var(--color-secondary);
  border-radius: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hidden {
  opacity: 0;
}
.console-underscore {
  display: inline-block;
}

input {
  width: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;

  border-radius: 0.5rem;

  border: none;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;

  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (max-width: 420px) {
  .console-container {
    font-size: 1.7rem;
  }
}
