* {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  background-image: url(./images/back.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-container {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: antiquewhite;
  color: black;
  padding: 1rem;
  border-radius: 4px;
  height: 30vh;
  width: 70vh;
  border: none;
  text-align: center;
  transition: 0.2s all ease-in-out;
  overflow: auto;
}

h2 {
  margin-top: 1rem;
}

button {
  margin-top: 2rem;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  cursor: pointer;
  background-color: black;
  color: white;
  transition: 0.2s all ease-in-out;
  font-size: large;
}

button:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 1200px) {
  .container {
    overflow-x: hidden;
  }

  .quote-container {
    overflow: auto;
  }

  p {
    padding: 0 7rem;
  }

  h1 {
    padding: 0 2rem;
  }
}
