:root {
  --ust-yellow-shade: #ff5a00;
  --ust-yellow-base: #ffcc00;
  --ust-yellow-tint: #ffd633;
  --ust-black: #222;
  --ust-blue: #0077b6;
  --ust-white: #fff;
  --ust-gray-shade: #212529;
  --ust-gray-base: #495057;
  --ust-gray-tint: #f1f3f5;
  --ust-danger: #ff5a5f;
  --radius: 15px;
  --shadow: 0 6px 20px rgba(0,0,0,0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ust-black);
  line-height: 1.5;
  max-width: 155rem;
  margin: auto;
}