*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --Red: hsl(0, 78%, 62%);
    --Cyan: hsl(180, 62%, 55%);
    --Orange: hsl(34, 97%, 64%);
    --Blue: hsl(212, 86%, 64%);
    --White: hsl(0, 0%, 100%);
    --Grey: hsl(234, 12%, 34%);
    --White-Grey: hsl(212, 6%, 44%);
    --LightGray: hsl(229, 6%, 66%);
    --VeryLightGray: hsl(0, 0%, 98%);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: poppins, sans-serif;
}
.container{
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}
h1{
    text-align: center;
    font-size: 45px;
    padding: 10px;
    margin-top: 10px;
}
.title-1{
    color: var(--White-Grey);
    font-weight: 200;
}
.title-2{
    color: var(--Grey);
    font-weight: 700;
}
.description{
    text-align: center;
    font-size: 16px;
    color: var(--White-Grey);
    margin: 10px 0 30px 0;
}
.card-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card-1{
    width: 250px;
    height: 250px;
    background-color: white;
    border-top: 5px solid var(--Cyan);
    padding: 20px;
    text-align: left;
}
.card-1 > img{
    width: 10%;
    height: 10%;
    object-fit: cover;
    margin: 0 auto;
    align-self: center;
}
.card-2{
    width: 250px;
    height: 250px;
    background-color: white;
    border-top: 5px solid var(--Red);
    padding: 20px;
    text-align: left;
}
.card-2 > img{
    width: 10%;
    height: 10%;
    object-fit: cover;
    margin: 0 auto;
    align-self: center;
}
.card-3{
    width: 250px;
    height: 250px;
    background-color: white;
    border-top: 5px solid var(--Orange);
    padding: 20px;
    text-align: left;
}
.card-3 > img{
    width: 10%;
    height: 10%;
    object-fit: cover;
    margin: 0 auto;
    align-self: center;
}
.card-4{
    width: 250px;
    height: 250px;
    background-color: white;
    border-top: 5px solid var(--Blue);
    padding: 20px;
    text-align: left;
}
.card-4 > img{
    width: 10%;
    height: 10%;
    object-fit: cover;
    margin: 0 auto;
    align-self: center;
}
footer{
    text-align: center;
    margin-bottom: 20px;
}
