:root {
  --bg-color: #13161c;
  --text-color: hsl(168, 89%, 53%);
  --bg-gradient-color: linear-gradient(to right, #21f2e4, #bd1d1d);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: radial-gradient(circle at top left, #0f0f0f, #0a0a0a 40%, #080808);
  background-attachment: fixed;
  background-size: cover;
  color: #ccc;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 30%, rgba(0, 255, 255, 0.12), transparent 100%),
    radial-gradient(circle at 80% 70%, rgba(238, 0, 255, 0.144), transparent 100%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.8;
  animation: pulseBackground 10s infinite alternate;
}

@keyframes pulseBackground {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

main,
.mainContainer,
.box-asp {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

img {
  width: 20em;
  object-fit: cover;
}

textarea {
  width: 200px;
  height: 100px;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
}

a {
  text-decoration: none;
  color: #f0f0f0;
}

footer {
  position: relative;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.log {
  color: rgba(218, 8, 50, 0.4);
}

.col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 50px 0px;
  overflow-x: hidden;
}

.row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: auto;
  gap: 5rem;
}

.container * {
  padding: 0;
  margin: 0;
}

.input {
  display: flex;
  flex-direction: row !important;
  width: 200px;
  height: 30px;
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
}

.box-code {
  background-color: rgb(44, 46, 46);
  border-radius: 5px;
  height: 100px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

