*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(#232526,#414345);
}
.wrapper{
    width: 605px;
    background-color:white;
    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 i{
    font-size: 15px;
}
.quote-area i:first-child{
    margin: 3px 10px 0 0 ;
}
.quote-area i:last-child{
    display: flex;
    align-items: flex-end;
    margin: 0 0 3px 10px ;
}
.quote-area .quote{
    font-size: 22px;
    text-align: center;
    word-break: break-all;
}
.content .author{
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    margin-top: 20px;
    font-style: italic;
}
.author span:first-child{
    margin: -8px 5px;
}
/*.wrappers .buttons{
    
}*/
.buttons .features{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.features ul{
    display: flex;
    justify-content: space-between;
}
.features ul li{
    list-style: none;
    margin: 0 5px;
    height: 47px;
    width: 47px;
    display: flex;
    border: 2px solid black;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.features ul li:hover{
    color: white;
    background: linear-gradient(#232526,#414345);
}
.features button{
    border: none;
    outline: none;
    color: white;
    /* background-color: black; */
    background: linear-gradient(#232526,#414345);
    padding: 13px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-style :16px;;
}

button.loading{
    opacity: 0.7;
    pointer-events: none;
}