body{
    background-color:rgba(152, 147, 147, 0.268);
    color: black;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    
}

.outer{
    height: 250px;
    width: 700px;
    padding: 15px;
    background-color:white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner{
    height: 90px;
    width: 93%;
    border-radius: 10px;
    background-color: rgba(152, 147, 147, 0.268);
    border-left: rgb(34, 162, 212) 7px solid;
    font-size: 18px;
    padding: 5px 5px 0px 10px;
   
}

.quote{
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-top: 25px;
}

.author{
color: green;
    margin: 5px 0px 10px 470px;
}


button{

    outline: none;
    background-color: green;
    border-radius: 8px;
    border: none;
    height: 40px;
    width: 150px;
    color: white;
    padding: 5px;
    font-size: 15px;
    margin: auto;
    

}

button:hover{
    
   border: 2px solid aliceblue;
}