@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}
body {
  margin: 0;
}
.flex-container {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-item {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}

p {
  font-weight: 300;
}

.grd {
  background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}