*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #5052E2;
    font-family: 'Roboto', sans-serif;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto;
}
.header{
    text-align: center;
}
.title{
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 600;
    line-height: 6.5rem;
    letter-spacing: -4px;
    color: #fff;
}
.description{
    max-width: 640px;
    margin: 1rem;
    font-size: 1.375rem;
    line-height: 2.125rem;
    letter-spacing: -0.2px;
    color: #fff;
}
.testimonial{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem auto;
}
.testimonial .box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 360px;
    height: 260px;
    margin: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
}
.user{
    display: flex;
    align-items: center;
}
.user img{
    width: 50px;
    height: 50px;
    margin-right: .5rem;
    border-radius: 50%;
}
.name{
    font-family: 'Poppins', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: 2px;
    color: #1b1b1b;
}
.handle,
.date{
    font-size: .875rem;
    color: #9b9b9b;
}
.message{
    font-size: 1.125rem;
    line-height: 2.125rem;
    color: #1b1b1b;
}
.hashtag{
    color: #55ACEE;
}
.footer span{
    color: #fff;
    margin: .5rem;
    font-size: .875rem;
}