@font-face {
  font-family: Montserat;
  src: url(fonts/Montserrat-VariableFont_wght.ttf);
}
:root {
  --ban-Input-color: #323238;
  --ban-White-color: #eaeaea;
  border: none;
}
.container {
  display: block;
}
.mid {
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  overflow: hidden;
  vertical-align: middle;
}
nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding-top: 2.5rem;
  margin-bottom: 2rem;
}
.table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding-top: 2.5rem;
  margin-bottom: 2rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input-class {
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  --webkit-appearance: none;
  --moz-appearance: none;
  padding: 0.625rem 1.25rem; /* py-2.5 px-5 */
  background-color: var(--ban-Input-color);
  color: var(--ban-White-color);
  font-size: medium;
  border: none;
  border-bottom: 1px solid var(--ban-Input-color);
  width: 80%;
}
select {
  cursor: pointer;
  max-width: 15rem;
  background: url("./arrow.svg") no-repeat right 8px center;
}
.inputs {
  max-width: 30rem;
}
.input-group {
  display: block;
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
}
.input-class:hover {
  border-color: var(--ban-White-color); /* hover:border-ban-White */
}

.input-class:focus {
  outline: none;
  border-color: var(
    --ban-White-color
  ); /* focus:outline-none focus:border-ban-White */
}
body {
  font-family: Montserat;
  background-color: #141414;
  color: #eaeaea;
  margin: 0 4% 0 4%;
}
.result {
  font-weight: 600;
  font-size: larger;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-content: center;
}
.circle-box {
  max-width: 50rem;
  background-color: #202020;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.circle {
  --tw-bg-opacity: 1;
  background-color: rgb(54 212 216 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(234 234 234 / var(--tw-text-opacity));
  opacity: 0.5;
  filter: blur(6.25rem);
  pointer-events: none;
  border-radius: 50%;
  width: 16.875rem;
  height: 16.875rem;
  position: absolute;
  top: -20%;
  bottom: auto;
  left: -15%;
  right: auto;
}
.circle.pink {
  --tw-bg-opacity: 1;
  background-color: rgb(255 70 181 / var(--tw-bg-opacity));
  top: auto;
  bottom: -20%;
  left: auto;
  right: -15%;
}
footer {
  border-top: #323238 2px solid;
  text-align: center;
}
a {
  color: #2563eb;
}

@media (min-width: 770px) {
  .input-class {
    width: 80%;
  }
  #logoIcon {
    display: block;
  }
}
@media (max-width: 769px) {
  .table {
    display: block;
  }
  img {
    width: 10rem;
  }
  #logoIcon {
    display: none;
  }
  nav {
    display: block;
  }
}
