body {
  max-height: 100%;
  background-color: black;
  height: 100%;
  width: 100%;
  font-family: "Fjalla One", sans-serif;
  font-family: "Roboto", sans-serif;
  font-family: "Ubuntu", sans-serif;
}

.Herobox {
  background-color: darkgrey;
  height: 40em;
  width: 60em;
  margin: 3% 5% 3% 20%;
 
  /* position: absolute; */
}

header {
  text-align: center;
  font-size: 2em;
  padding-top: 20px;
}

hr {
  background-color: #ffffff;
}
.button {
  display: flex;
  margin: 300px 0px 0px 180px;
  padding: 10px 200px 10px 200px;
  background-color: brown;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  border-radius: 5px;
  

}

.button:hover {
  background-color: rgb(143, 80, 80);
}

a {
  text-decoration: none;
  background-color: rgb(6, 92, 126);
  color: white;
  border-style: solid;
  border: none;
  border-radius: 5px;
  padding: 10px 27.9% 10px 27.9%;
  margin-left: 18.6%;
  font-size: 20px;
  font-weight: bold;
  
}

a:hover {
  background-color: rgb(129, 181, 201);
}

.quotes {
  text-align: center;
  font-size: 35px;
}

@media only screen and (max-width: 600px) {
  .Herobox {
    margin: auto;
    background-color: darkgrey;
    height: 47em;
    width: 32em
  }
  .button{
    margin: 350px 10px 0px 10px;
    padding: 10px 27.9% 10px 27.9%;
  }
  a{
    margin-left: 80px;
  }

  .quotes {
    margin: 40px 10px 0px 10px;
    text-align: center;
    font-size: 35px;
  }
}
  
  .quotes {
    font-size: 18px;
  }

.spinner {
  margin: 10px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner.hidden {
  visibility: hidden;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 70% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
} 

@keyframes sk-stretchdelay {
  0%, 40%, 70% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

quote:disabled {
    background-color: #ffffff;
    color: #ffffff;
    cursor: not-allowed;
  }