* {
  margin: 0;
  padding: 0;
}

.quoteBackground {
  visibility: hidden;
  background-color: black;
  opacity: 0.5;
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quoteFormEsc {
  background-color: #cc0000;
  color: white;
  position: absolute;
  z-index: 10;
  top: .5rem;
  right: .5rem;
  width: 2rem;
  height: 2rem;
  border: none;
}

.quoteFormEsc:hover {
  background-color: #b80000;
}

.quoteForm {
  padding: 2rem 2rem;
  visibility: hidden;
  background-color: white;
  position: fixed;
  top: 6%;
  z-index: 5;
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border: dashed black 0.1rem;
}

@media only screen and (max-width: 800px) {
  .quoteForm {
    top: 4%;
    gap: 1rem;
  }
}

@media only screen and (max-width: 650px) {
  .quoteForm {
    top: 3%;
  }
}

@media only screen and (max-width: 600px) {
  .quoteForm {
    top: 1%;
    gap: .5rem;
  }
}

.quoteForm h3 {
  font-size: x-large;
}

.quoteForm input {
  padding: 0.5rem 0.5rem;
  width: 94%;
  font-size: medium;
  border: solid black 0.1rem;
}

@media only screen and (max-width: 700px) {
  .quoteForm input {
    font-size: small;
  }
}

.quoteQuestion {
  padding: .5rem;
  max-width: 94%;
  min-width: 94%;
  min-height: 10rem;
  max-height: 10rem;
  border: solid black .1rem;
  font-size: small;
}

.quoteFormSubmit {
  background-color: #cc0000;
  color: white;
  padding: 1rem 1rem;
  width: 100%;
  font-size: large;
  font-weight: normal;
  border: none;
  cursor: pointer;
}

.quoteFormSubmit:hover {
  background-color: #b80000;
}

.quoteForm p {
  color: gray;
  text-align: center;
}
