* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
   
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; 
    background: #212121;
} 
.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;
}  

.quote-area .quote{
    font-size: 22px; 
    text-align: left;
    word-break: break-all;
} 
.content .author{
    display: flex; 
    margin-top:18px;
    justify-content: flex-end; 
    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;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
}  
ul{
    display: flex;
}
.features ul li{
    list-style: none;
    margin: 0 5px;
    height: 47px;
    width: 47px; 
    display: flex;
    color: #5372F0; 
    align-items: center;
    justify-content: center;
    border-radius:50% ;
    border: 2px solid #5372F0; 
    transition: all 0.3s ease;

}   
.features ul li:hover{
    color: #fff;
    background: #5372F0;
} 
.features button{
   border: none;
   outline: none;
   color: white;
   cursor: pointer;
   font-size: 16px;
   padding: 13px 22px;
   border-radius: 30px;
   background: #5372F0;  
   transition: all 0.3s ease;
} 
button:hover{
    background: #4658f3; 
}











