*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #78C1F3;
}
.quote-wrapper{
    background-color: white;
    padding: 20px;
    position: relative;
    display: flex;
    width: 30%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}
.quote{
    width: 90%;
    margin: auto;
    z-index: 3;
    opacity: 0.7;
}

button{
    outline: none;
    border: none;
    margin-top: 15px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 800;
    padding: 10px 20px;
    background-color: #9BE8D8;
    transition: background-color .3s linear;
}
button:hover{
    background-color: #36e9c5;
}
span{
    height: 3px;
    width: 30px;
    /* position: absolute; */
    /* top: 63%; */
    background-color: #CBFFA9;
    /* left: 59%; */
}
.auth{
    margin-top: 20px;
    text-align: right;
    display: flex;
    gap: 10px;
    align-items: center;
}
.author{
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    
}
i{
    font-size: 3rem;
    font-weight: 900;
    position: absolute;
    color: #AEE2FF;
}
.left{
    top: 0;
    left: 10px;
    transform: rotate(180deg);
}
.right{
    bottom:100px;
    right: 10px;
}