html {
  height: 100%;
  font-family: Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.margin-y-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.margin-top-10 {
  margin-top: 10px !important;
}

.margin-0 {
  margin: 0 !important;
}

.padding-y-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.padding-0 {
  padding: 0 !important;
}

.read-more-link {
  padding: 0 10px;
  background-color: #fcd35d;
  color: white;
  text-decoration: none;
  cursor: pointer;

  &:hover {
    background-color: #f8c226;
  }
}

.text-align-center {
  text-align: center;
}

.flex-column {
  display: flex !important;
  flex-direction: column !important;
}

.flex-row {
  display: flex !important;
  flex-direction: row !important;
}

.flex-space-between {
  justify-content: space-between !important;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.width-50 {
  width: 50%;
}

.width-33 {
  width: 33.33%;
}

.padding-20 {
  padding: 20px;
}

.padding-top-0 {
  padding-top: 0;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}
