html {
  font-size: 100%;
}

body {
  font-family: 'Inter';
}

:root {
  --color-black: #212121;
  --color-grey: #6B6B6B;
  --color-blue: #0065A4;
  --color-hover-blue: #005081;
}

/* Fonts */
.h1, .p {
  font-family: Inter;
  font-style: normal;
}

.h1 {
  color: var(--color-black);
  font-size: 3rem;
  font-weight: 600;
  line-height: 4.375rem;
  letter-spacing: -0.14rem;
}

.p {
  color: var(--color-grey);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--color-blue);
  padding: .5rem 6rem;
  border-radius: 1.2rem;
}

.btn-primary:hover {
  background-color: var(--color-hover-blue);
}

.w-60 {
  width: 60%;
}