:root {
  --Red: hsl(0, 78%, 62%);
  --Cyan: hsl(180, 62%, 55%);
  --Orange: hsl(34, 97%, 64%);
  --Blue: hsl(212, 86%, 64%);
  --Grey500: hsl(234, 12%, 34%);
  --Grey400: hsl(212, 6%, 44%);
  --verylightgrey: #f1f1f1;
  --White: hsl(0, 0%, 100%);
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--verylightgrey);
  text-align: center;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
section {
  margin-top: 20px;
}
section h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 35px;
  font-weight: lighter;
}
section h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 40px;
}
section p {
  font-size: 20px;
}
.container {
  margin-top: 50px;

  text-align: start;
  
  justify-content: center;
}
.Card {
  background: var(--White);
  margin: 0 auto 25px auto;
  width: 400px;
  height: 250px;
  border-radius: 10px;
  border-top: 4px solid var(--Cyan);
  box-shadow: 0 5px 10px 0 var(--Grey400);
}

.Card h3,
p {
  padding-left: 20px;
}
.Card p{
    letter-spacing: .5px;
    font-size: 15px;
    line-height: 1.8;
}
.Card:nth-last-of-type(1){
border-color: var(--Orange);
}
.Card:nth-last-of-type(2){
    border-color: var(--Blue);

}
.Card:nth-last-of-type(3){
    border-color: var(--Red);

}
.Card:nth-last-of-type(4){
    border-color: var(--Cyan);

}
img {
  padding-left: 250px;
  padding-top: 20px;
  margin-bottom: 20px;
}
@media (min-width:1200px) {
  .container {
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
  }
  .container .down{
    transform: translateY(50%);
  }
}
