*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
main{
  height: 100vh;
  width: 100%;
  background: #A52A2A;
  padding: 5px 10px 30px 10px;
}
main > div.quoteHolder{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0px 10px 0px;
}
p.quote{
  background: #fff;
  box-shadow: 0px 0px 4px #000;
  padding: 10px;
  font-size: 1.4em;
  font-family: Georgia, 'Times New Roman', Times, serif;
  visibility: hidden;
}
div.btnHolder{
  height: 100px;
  width: 100%;
  text-align: center;
}
button.btn{
  height: 2em;
  background: #F6F6F6;
  font-size: 2em;
  font-weight: bolder;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  padding: 2px 8px;
  box-shadow: 2px 2px 4px #000;
  border: 1px solid #000;
}
@media screen and (min-width: 200px) and (max-width: 299px) {
  button.btn{
    height: 2em;
    background: #F6F6F6;
    font-size: 1em;
    font-weight: bolder;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    padding: 2px 8px;
    box-shadow: 2px 2px 4px #000;
    border: 1px solid #000;
  }
}
@media screen and (min-width: 300px) and (max-width: 400px) {
  p.quote{
    background: #fff;
    box-shadow: 0px 0px 4px #000;
    font-size: 1.9em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 15px;
    visibility: hidden;
  }
  button.btn{
    height: 2em;
    background: #F6F6F6;
    font-size: 2em;
    font-weight: bolder;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    padding: 2px 8px;
    box-shadow: 2px 2px 4px #000;
    border: 1px solid #000;
  }
}
@media screen and (min-width: 401px) and (max-width: 1026px) {
  p.quote{
    background: #fff;
    box-shadow: 0px 0px 4px #000;
    font-size: 1.9em;
    font-family: monospace;
    padding: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    visibility: hidden;
  }
  button.btn{
    height: 2.5em;
    background: #F6F6F6;
    font-size: 2em;
    font-weight: bolder;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    margin-top: 10px;
    box-shadow: 2px 2px 4px #000;
    border: 1px solid #000;
    padding: 2px 8px;
  }
}
