@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html, body {
  font-family: "Playfair Display", 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.primary-button {
  background-color: #fbbf24;
  padding: 1rem 2rem;
  border-radius: 5px;
  width: auto;
  height: auto;
  text-align: center;

  &.disabled {
    background-color: #bbecc2;
    cursor: not-allowed;
  }
}

.primary-button-sm {
  background-color: #fbbf24;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  width: auto;
  height: auto;
  text-align: center;

  &.disabled {
    background-color: #bbecc2;
    cursor: not-allowed;
  }
}

.img-text {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  overflow: hidden;
  font-size: 250px;
  font-weight: 600;
  height: 250px;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text;
  background: url("img/number_image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: text;
}

@property --num {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false
}

#sideimage {
  background-image: url("img/sideimage.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
}

@media screen and (max-width: 768px) {
  .img-text {
    display: flex;
    font-size: 125px;
    height: 150px;
  }
}
