/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
html, body {
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  text-align: center;
  background-color: #5865F2;
  color: #FFFFFF;
}

/* Main card */
main {
  background-color: #16161a;
  border-radius: 12px;
  width: 450px;
  margin: 4rem auto;
  overflow: hidden;
}

/* Image container */
.container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.decor {
  width: 100%;
  height: auto;
  display: block;
}

/* Text content */
.text {
  width: 80%;
  margin: 2.5rem auto;
}

.title {
  color: #2cb67d;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.quote {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: 0.25rem;
}

.quoted {
  color: #94a1b2;
  font-style: italic;
  text-transform: lowercase;
}
