*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    min-height:100vh;
    transition: 0.5s;
    transition-timing-function: ease-in;
    background-image: linear-gradient(to right bottom, rgba(149, 114, 245, 0.884), #c5ad6ca8);
    display: flex;
    align-items: center;
    justify-content: center;

}

.container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 4px 10px rgb(33, 22, 134);
    border-radius: 50%;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 10px;

}
.fa-quote-left, .fa-quote-right {
    font-size: 35px;
    color: rgb(92, 0, 179);
}
.quote
{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}
.author 
{

    margin:10px;
    text-align: right;
    font-size: 25px;
    font-style: italic;
    font-family: cursive;
}
hr {
    margin: 10px 0;
    width: 100%;
    border: 1px solid black;
    background-color: black;
}
.buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px;
}
.insta
{
    border:1px solid rgb(69, 36, 73);
    border-radius: 4px;
    background-image:linear-gradient(to left bottom, rgb(138, 0, 230), #eee3c4);
    color: white;
    text-align: center;
    font-size: 1.8em;
    width: 60px;
    height: 40px;
    line-height: 40px;
}
.next
{
    font-size:18px;
    width: 150px;
    height: 75px;
    border-radius: 100px/50px;
    cursor:pointer;
    padding: 10px;
    margin-top: 5px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to right bottom, rgb(138, 0, 230), #ffedbca8);
}
.container:hover
{
    box-shadow: 0 10px 10px rgb(107, 4, 224);
}
.next:hover{
    transition: 0.5s;
    background-color:aqua
}