@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700&family=Noto+Serif:wght@400;700&family=Inria+Serif:wght@400;700&display=swap');

* {
  font-family: 'Noto Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://source.unsplash.com/1600x900/?wallpapers,backgrounds')
    no-repeat;
  background-color: orange;
}

.quoteContainer {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  border-radius: 10px;
  color: #ffffff;
  padding: 20px 30px;
  width: 600px;
}

.quote {
  font-size: 21px;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.quoteAuthor {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
