@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

:root {
  /*codificacion de colores*/
  
    /*Texto primario*/
    --green: hsl(80, 100%, 33%);
    --indigo: hsl(270, 100%, 25%);

    /*Iconos*/
    --rojo-google: hsl(10, 90%, 55%);
    --azul-facebook: hsl(225, 85%, 35%);
    --azul-twitter: hsl(195, 100%, 50%);
  
    /*Neutral*/
    --grey: hsl(230, 10%, 60%);
    --ligth-grey: hsl(45, 0%, 95%);
    --white: hsl(0, 0%, 100%);
  }

body {
  margin: auto;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  overflow: hidden;
  padding: 4rem;
}

h1, h2, h3, h4, h5 {
  color: var(--green);
}

h1, h2, h3, h4, h5 {
  color: var(--green);
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  text-transform:uppercase;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--green);
}

h3 {
  font-size: 1.675rem;
  text-align: left;
  text-decoration:underline;
  margin-bottom: 1.675rem;
}

a {
  color: var(--green);
}

p {
  margin-bottom: 1.125rem;
}