* {
    box-sizing: border-box;
    margin: 0;
    padding:0;
}
body {
    background-color:#ddd;
    font-family: 'Poppins', sans-serif;
    max-width: 100vw;
    min-height: 100vh;
    padding:32px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width:80%;
    height:auto;
    background-color:hsl(0, 0%, 100%);
    padding:2rem;

}
.header  {
    text-align: center;
    margin-bottom: 3rem;
}
.header .desc {
    text-align: center; 
    font-size: 21px;
    line-height: 1.6rem;
     color: hsl(234, 12%, 34%);
}
.header h2 {
     color: hsl(234, 12%, 34%);
     margin-bottom: 10px;
} 

.header p {
    font-size: 10px;
    color: hsl(234, 12%, 34%);
    margin: 0 auto;
    max-width: 38%;
    line-height: 15px;

}
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:20px;
}
main .box {
    width:250px;
    height:180px;
    padding: 1.5rem;
    border-radius: 5px;
    background-color:  hsl(0, 0%, 100%);
    
}
main .box p {
    font-size: 10px;
    color:hsl(212, 6%, 44%);
    margin-bottom: 30px;
}
main .box h3 {
    color: hsl(234, 12%, 34%);
    font-family: 'Poppins', sans-serif; ;
    margin-bottom:10px;
}

.one {
    box-shadow:0 3px 0px inset hsl(180, 62%, 55%), .5rem 0 2rem #ddd;
    margin-left: auto;
}
.two {
    box-shadow:0 3px 0 inset  hsl(0, 78%, 62%), .5rem 0 2rem #ddd;
    
}
.three {
    box-shadow:0 3px 0 inset  hsl(34, 97%, 64%), .5rem 0 2rem #ddd;
}
.four {
    box-shadow:0 3px 0 inset hsl(212, 86%, 64%) , .5rem 0 2rem #ddd;
    margin-right: auto;
}

img {
    width:30px;
    height:30px;
    float:right;    
}
.join {
    display:flex;
    flex-direction: column;
    gap:20px;
}
@media (max-width:480px) {
 
    .container {
    max-width: 100%;
    margin:2rem 3rem ;
 }
 header {
    max-width:100%;
    font-size: 12px;
 }
 .header .desc {
    max-width:100%;
    font-size: 17px;
 }
.header p {
    max-width:85%;
    font-size: 12px;
}
main {
    display:flex;
    flex-direction: column;
    align-items: center;    
}
}