@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Rubik';
}

body {
  background-color: #f5f5f5;
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
}

.content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.input {
  transform: translateY(2rem);
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  color: rgb(92, 92, 92);
  width: 30rem;
  padding: 0.5rem;
  height: 4rem;
  overflow: hidden;
}

.input:focus {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}


#count {
  transform: translateY(1.6rem);
  text-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.2);
  color: rgb(97, 145, 115);
  font-size: 1rem;
}

.footer {
  margin: 0 auto;
  position: relative;
  top: 38%;
}

.footer-text > a {
  text-decoration: none;
  color: black;
}

@media screen and (max-width: 384px) {
  .input {
    width: 90%;
  };
};

.spinner {
  border: solid 3px rgb(219, 219, 219);
  border-top: solid 3px #0088ff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  animation: spin 1s linear infinite;
}

body > center {
  position: absolute;
  top: 50%;
  display: flex;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
