@font-face {
  font-family: Lora;
  src: url("Lora-VariableFont_wght.f08f353f.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: GaramondBold;
  src: url("CormorantGaramond-Bold.7e2e4e31.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  color: #dadada;
  background: linear-gradient(#48678d, #224773) fixed;
  padding: 5px 10%;
  font-family: Lora, serif;
}

@media (width <= 768px) {
  body {
    padding: 0;
  }
}

header {
  text-align: center;
  color: #dadada;
  font-family: GaramondBold, serif;

  & h1 {
    font-family: Lora, serif;
  }

  & img {
    border-radius: 50%;
    width: 100px;
  }
}

.form {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;

  & .input, & .button {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    width: 100%;
    max-width: 500px;
    height: 50px;
    padding: 10px 20px;
    font-family: Lora, serif;
    font-size: 1.5rem;
  }
}

.input::placeholder {
  color: #999;
  font-size: 1.125rem;
}

.button {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.find-icon:active {
  transform: scale(.9);
}

.result {
  flex-flow: column wrap;
  align-items: center;
  gap: 20px;
  display: flex;
}

.result-item {
  background: linear-gradient(to top, #48678d, #224773);
  border: 1px solid #ccc;
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  padding: 10px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 15px #0000004d;
}

.red-upper {
  text-decoration: underline;
}

.result-item-number {
  color: #ccc;
  font-size: 1.5rem;
  font-weight: 800;
  position: absolute;
  top: 5px;
  right: 10px;
}

.download-btn {
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  padding: 10px 20px;
  display: flex;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top-color: #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  animation: 1s linear infinite spin;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner-container {
  justify-content: center;
  align-items: center;
  min-height: 100px;
  display: flex;
}

.spinner-container-small {
  min-height: 20px;
}

.spinner-small {
  border: 4px solid #f3f3f3;
  border-top-color: #3498db;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  animation: 1s linear infinite spin;
  display: flex;
}
/*# sourceMappingURL=index.2cdaf7bc.css.map */
