@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: 'Roboto', sans-serif;
}

.container {
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;

  background-color: #091921;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(#e91e63, #ffc107);
  clip-path: circle(22% at 30% 20%);
}

.container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(#e91e63, #ffc107);
  clip-path: circle(20% at 70% 90%);
}


.quotes {
  position: relative;
  height: 440px;
  width: 700px;
  z-index: 10;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;

  /* glassmorphism */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
}

.h {
  color: #14ff47;
}

span {
  display: block;
  font-size: 20px;
}

.btn {
  padding: 10px 30px;

  color: #fff;
  font-size: 30px;
  font-weight: 400;

  background-color: #14ff47;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.text {
  width: 700px;
  height: 200px;
  padding: 0 25px;
}

.p {
  margin-top: 30px;

  font-weight: 500;
  font-size: 20px;
  color: #fff;
}