* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  font-family: "Playfair Display", serif;
  color: rgb(116, 89, 49);
  font-size: 18px;
}

.container {
  background-color: rgba(255, 255, 255, 0.5);
  width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.container h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: black;
}
.container blockquote {
  font-size: 26px;
  min-height: 110px;
  font-family: "Great Vibes", cursive;
  font-size: 30px;
}
.container blockquote::before, .container blockquote::after {
  content: '"';
}
.container span {
  display: block;
  margin-top: 10px;
  float: right;
  position: relative;
  color: black;
}
.container span::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: rgb(160, 124, 71);
  position: absolute;
  top: 50%;
  left: -30px;
}
.container div {
  width: 100%;
  margin-top: 50px;
}
.container #myButton {
  background-color: rgb(160, 124, 71);
  color: #fff;
  border-radius: 25px;
  border: 1px solid rgb(160, 124, 71);
  width: 150px;
  height: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.container #myButton:hover {
  background-color: rgb(116, 89, 49);
}/*# sourceMappingURL=styles.css.map */