*{
    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, #040b11, #040b11);
    display: flex;
    align-items: center;
    justify-content: center;
}
.container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    width: 1000px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 10px;
}
.fa-quote-left, .fa-quote-right {
    font-size: 35px;
    color: #0e1216;
}
.quote
{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}
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;
}
.next
{
    font-size:18px;
    border-radius: 5px;
    cursor:pointer;
    padding: 10px;
    margin-top: 5px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to right bottom, #2e455a, #485662);
}
.container:hover
{
    box-shadow: 0 10px 10px #485662;
}