/*Import Google font Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}
body{
    display:flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #6c63ff
}
.rectangle-1{
    position: absolute;
    width: 100%;
    height: 35px;
    left: 0px;
    top: 0px;

background: #000000;
}
.quotes-1{
position: absolute;
width:940px;
height: 360px;
top: 46px;

background: url(/images/quotes.png);
}
.wrapper{
    position:absolute;
    width: 650px;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 30px 25px;
    top: 450px;
}
.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;
    font-size: 18px;
    font-style: italic;
    margin-top: 20px;
    justify-content: flex-end;
}
.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;
}
.features ul{
    display: flex;
}
.features ul li{
    list-style: none;
    margin: 0 5px;
    height: 47px;
    width: 47px;
    display: flex;
    cursor: pointer;
    color: #6c63ff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #6c63ff;
    transition: all 0.3s ease;
}
.features ul li:hover{
    color: #fff;
    background: #6c63ff;
}
.features button{
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 13px 22px;
    border-radius: 30px;
    background: #6c63ff;
}
button.loading{
    opacity: 0.7;
    pointer.events: none;
}

@media only screen and (max-width: 550px){
    *{
        margin:0;
        padding:0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    
    }
    body{
        display:flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background-color: #6c63ff
    }
    .rectangle-1{
        position: absolute;
        width: 100%;
        height: 15px;
        left: 0px;
        top: 0px;
    
    background: #000000;
    }
    .quotes-1{
    position: absolute;
    width:300px;
    height: 150px;
    top: 23px;
    
    background: url(/images/sm-quotes.png);
    }
    .wrapper{
        position:absolute;
        width: 280px;
        background: #ffffff;
        border-radius: 8px;
        padding: 15px 15px 12px;
        top: 205px;
    }
    .wrapper header{
        font-size: 18px;
        font-weight:600;
        text-align: center;
    }
    .wrapper .content{
        margin: 35px 0;
    }
    .content .quote-area{
        display: flex;
        justify-content: center;
    }
    .quote-area i{
        font-size: 10px;
    }
    .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: 15px;
        text-align: center;
        word-break: normal;
    }
    .content .author{
        display: flex;
        font-size: 10px;
        font-style: italic;
        margin-top: 20px;
        justify-content: flex-end;
    }
    .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;
    }
    .features ul{
        display: flex;
    }
    .features ul li{
        list-style: none;
        margin: 0 5px;
        height: 47px;
        width: 47px;
        display: flex;
        cursor: pointer;
        color: #6c63ff;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid #6c63ff;
        transition: all 0.3s ease;
    }
    .features ul li:hover{
        color: #fff;
        background: #6c63ff;
    }
    .features button{
        border: none;
        outline: none;
        color: #fff;
        cursor: pointer;
        font-size: 9px;
        padding: 13px 22px;
        border-radius: 30px;
        background: #6c63ff;
    }
    button.loading{
        opacity: 0.7;
        pointer.events: none;
    }
}