*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #5372f0;
}
.wrapper{
    width: 605px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 30px 25px ;
}
.wrapper header{
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}
.wrapper .content{
    margin: 35px 0;
}
.content .quote-area{
    display: flex;
    justify-content: center;
}
.quote-area .quote{
    font-size: 22px;
    text-align: center;
    word-break: break-all;
}
.quote-area i{
    font-size: 15px;
}
.quote-area i:first-child{
    margin: 3px 10px 0 0;
}
.quote-area i:last-child{
    margin: 0 0 3px 10px;
    display: flex;
    align-items: flex-end;
}
.content .author{
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    font-size: 18px;
    font-style: italic;
}
.author span:first-child{
  margin: -7px 5px 0 0;
  font-family: monospace;
}
.wrapper .buttons{
    border-top: 1px solid #ccc;
}
.buttons .features{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.features ul{
    display: flex;
}
.features ul li{
    list-style: none;
    margin: 0 5px;
    height: 47px;
    width: 47px;
    border: 2px solid #5372f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5372f0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.features ul li:hover{
    background: #5372f0;
    color: #fff;
}
.features button{
 border: none;
 outline: none;
 cursor: pointer;
 background: #5372f0;
 padding: 13px 22px;
 border-radius: 30px;
 color: #fff;
 font-size: 16px;
}
button.loading{
    opacity: 0.7;
    pointer-events: none;
}