.modal {
  position: absolute;
  background-color: white;
  padding: 3vw;
  border-radius: 1.2vw;
  z-index: 999;
  bottom: 10vw;
  box-shadow: #919191 0.5vw 0.3vw 3vw;
  display: flex;
  align-items: center;
  width: fit-content;
  @media screen and (min-width: 480px) {
    padding: 1rem;
    bottom: 2rem;
    border-radius: 5px;
    box-shadow: #919191 1px 1px 10px;
  }
}

.modal span {
  max-width: 40vw;
  white-space: nowrap;
  height: auto;
  word-wrap: break-word;
  font-size: 4vw;
  @media screen and (min-width: 480px) {
    font-size: 1rem;
    max-width: 200px;
  }
}

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