@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.main_content{
    width: 85%;
}
.top_content h1{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 23px;
}
.top_content h2{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;

} 
.top_content>p{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 13px;
    margin: 10px auto;
    max-width: 500px;
    
}

.bottom_content{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 30px;
    
}
.bottom_content .image{
    text-align: end;
}
.bottom_content h3{
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 15px;

}
.bottom_content p{
font-family: 'Poppins', sans-serif;
font-weight: 200;
font-size: 12px;
}
.image{
    margin-top: 40px;

} 


.three{
    margin-top: 1.4rem;
}
.box{
    width: 300px ;
    height: 200px;
    padding: 20px;
    box-shadow:0 0 6px 5px hsla(234, 12%, 34%, 0.107);
    border-radius: 5PX;
}
.one{
    border-top: 3px solid hsl(180, 62%, 55%);

}
.two{
    border-top: 3px solid hsl(0, 78%, 62%);
}
.three{
   border-top:3px solid hsl(34, 97%, 64%) ;
}
.four{
   border-top:  3px solid hsl(212, 86%, 64%);
}
@media (max-width:983px) {
    .bottom_content{
        margin: 10px;
        flex-direction: column;
    }
    
}

.attribution { font-size: 13px; text-align: center; }
.attribution a { color:black; }