* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  transition: 0.5s;
  transition-timing-function: ease-in;
  background-image: linear-gradient(135deg, orange, #ff99ff 60%, cyan, #ffb3b3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  width: 600px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px;
}

.fa-quote-left, .fa-quote-right {
  font-size: 38px;
  color: rgb(109, 0, 0);
}

.quote {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

.author {
  margin: 10px;
  text-align: right;
  font-size: 25px;
  font-style: italic;
  font-family: cursive;
}

hr {
  margin: 10px 0;
  width: 100%;
  border: 1px solid black;
  background-color: black;
}

.buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9px;
}

.twitter {
  border: 1px solid rgb(34, 145, 255);
  border-radius: 4px;
  background-color: rgb(34, 145, 255);
  color: white;
  text-align: center;
  font-size: 1.8em;
  width: 70px;
  height: 41px;
  line-height: 40px;
  padding: 5px;
}

.next {
  font-size: 18px;
  border-radius: 5px;
  font-family: 'Bebas Neue', cursive;
  cursor: pointer;
  padding: 10px;
  margin-top: 5px;
  font-weight: bold;
  color: white;
  background-image: linear-gradient(to right bottom, rgb(193, 224, 108), #5fe71faf);
}

.container:hover {
  box-shadow: 0 10px 10px rgb(202, 10, 236);
}
