*{
    font-size: 15px;
    box-sizing: border-box;
}

.poppins-thin{
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: hsl(212, 6%, 44%);
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hsl(212, 6%, 44%);
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: hsl(234, 12%, 34%);
}

body{
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 98%);
    height: 100vh;
    padding: 0;
    margin: 0;
}

header{
    align-self: center;
    text-align: center;
    width: 30%;
    padding: 30px;
    margin: 0;
}

main{
    display: grid;
    align-self: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    width: 70%;
    height: 60%;
    gap: 30px;
}


h1 span{
    margin-bottom: 0.5em;
    margin-top: 0;
    line-height: 1.4em;
    font-size: 2.2em;
}

p.poppins-regular{
    padding: 0 10px;
}

span{
    font-size: 1rem;
    line-height: 1.3em;
}

.card1, .card2, .card3, .card4{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    place-self: center;
    background-color: white; 
    border-radius: 5px;
    padding: 30px;
    padding-bottom: 50px;
    box-shadow: 2px 2px 30px lightgrey;
    width:100%
}

.column1, .column2, .column3{
    align-self: center;
}

.column2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

.card1{
    border-top: 3px solid hsl(180, 62%, 55%); /**cyan**/
}

.card2{
    border-top: 3px solid hsl(0, 78%, 62%); /**red**/
    grid-row: 1;
}

.card3{
    border-top: 3px solid hsl(34, 97%, 64%); /**orange**/
    grid-row: 2;
}

.card4{
    border-top: 3px solid hsl(212, 86%, 64%);/**blue**/
}

p > span:is(.poppins-bold){
    font-size: 1.4rem;
    margin-bottom: 30px;
}

p:not(.poppins-regular){
    margin-right: 30px;
}

div > p{
    line-height: 2rem;
    margin: 0;
    margin-bottom: 30px;
}

img{
   object-fit: cover;
   height: 30%;
   align-self: flex-end;
}

