@import url("https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;600&display=swap");
/*fonts*/

:root {
  --cor-primaria: #000000;
  --cor-secundaria: #f6f6f6;
  --cor-terciaria: #22d4fd;
  --cor-hover: #272727;

  --fonte-primaria: "Krona One", sans-serif;
  --fonte-secundaria: "Montserrat", sans-serif;
}

* {
  /* RESET CSS */
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  background-color: var(--cor-primaria);
  color: var(--cor-secundaria);
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20%;
}

form {
  width: 300px;
  margin: 50px auto;
  text-align: center;
}

input {
  display: block;
  margin: 20px auto;
  font-size: 1.5rem;
  gap: 10%;
}

.apresentacao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;

  gap: 25px;
}

.apresentacao__conteudo__titulo {
  width: 300px;
  margin: 50px auto;
  text-align: center;
}

.botao {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#container img {
  width: 600px;
  height: 300px;
}
/* teste botao */

.glow-on-hover {
  width: 225px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #524a4a;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.hide {
  display: none;
}

.rodape {
  color: var(--cor-primaria);
  background-color: var(--cor-terciaria);
  padding: 24px;
  text-align: center;
  font-family: var(--fonte-secundaria);
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  bottom: 0;
  position: fixed;
  width: 100%;
}

.rodape a {
  text-decoration: none;
  text-decoration-color: #000000;
}
