@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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");

:root {
  --primario: #dfdfdf;
  --secundario: #a8a8a8;
  --terciario: #6b6b6b;
  --blanco: #fff;
  --negro: #292929;
  --transparencia: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  margin: auto;
  height: 100vh;
  width: 100vw;
  background: var(--primario);
  overflow: hidden;
}

h1 {
  font-size: 5.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 3.8rem;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 0.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  font-size: 1.6rem;
  line-height: 1;
}
