@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/images/chris-lee-yb3hsmz4utg-unsplash.jpg);
  background-size: cover;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.container {
  padding: 0 30px;
  width: 100vw;
}
div.testimonial-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px 30px;
  border-radius: 7px;
  overflow: hidden;
}
.testimonial-item div {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  border: none;
  padding: 35px;
  border-radius: 10px;
}
.img {
  padding: 20px 0;
  border-radius: 50%;
  width: 100%;
}
h2 {
  padding-top: 0;
}
h2,
h3 {
  text-transform: uppercase;
}
h2,
h3,
p {
  margin-bottom: 10px;
  text-align: center;
}
p {
  margin-top: 20px;
}

@media screen and (max-width: 800px) {
  div.testimonial-item {
    flex-direction: column;
  }
  .img {
    margin-right: -2px;
  }
}
