.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: poppins;
    font-size: 15px;
}

body {
    background-color: #fafafa;
}

header {
    margin: 10vh 0 5vh 0;
    text-align: center;
}

header p {
    color: #7a797f;
    font-weight: 400;
}

h2 {
    color: #737277;
    font-weight: 200;
}

h1 {
    font-weight: 600;
    margin-bottom: 10px;
}

h2, h1 {
    font-size: 2.5em;
    line-height: 1.5em;
}

h1, h3 {
    color: #4f4e5c;
}

main {
    width: 80%;
    margin: 10px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    justify-content: center;
}

div {
    background-color: white;
    width: 400px;
    height: 280px;
    padding: 20px 40px;
    border-radius: 6px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

div h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

div p {
    color: #929395;
    text-align: left;
}

.cian {
    border-top: 5px solid hsl(180, 62%, 55%);
    align-self: center;
    grid-row: 1 / span 2;
    grid-column: 1;
    justify-self: end;
}

.rojo {
    border-top: 5px solid hsl(0, 78%, 62%);
    grid-column: 2;
    justify-self: center;
}

.naranja {
    border-top: 5px solid hsl(34, 97%, 64%);
    grid-column: 2;
    justify-self: center;
}

.azul {
    border-top: 5px solid hsl(212, 86%, 64%);
    align-self: center;
    grid-row: 1 / span 2;
    grid-column: 3;
    justify-self: start;
}


div {
    text-align: right;
}

img {
    margin-top: 10%;
}


@media (max-width: 1280px) {
    

    main {
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        gap: 20px;
        width: 100%;
        margin: 10px auto;
    }

    .cian{
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .rojo {
        grid-column: 1;
        grid-row: 2;
    }

    .naranja {
        grid-column: 1;
        grid-row: 3;
    }

    .azul {
        grid-column: 1;
        grid-row: 4;
        justify-self: center;
    }

}

@media (max-width: 800px) {
    h1, h2 {
        font-size: 1.5em;
    }
}