*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    min-height:100vh;
    transition: 0.5s;
    transition-timing-function: ease-in;
    background-image: url('79.jpg');
    background-size: 100%;
    display: flex;
    background-repeat: none;
    align-items: center;
    justify-content: center;

}

.container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    box-shadow: 10px 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    width: 700px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 10px;

}
.fa-quote-left, .fa-quote-right {
    font-size: 35px;
    color: rgb(0, 0, 0);
}
.quote
{
    text-align: center;
    font-size: 35px;
    font-weight: normal;
    font-family: Arial;
}
.author 
{
    margin:10px;
    text-align: right;
    font-size: 15px;
    font-style: italic;
    font-family: Arial;
}
hr {
    margin: 10px 0;
    width: 100%;
    border: 1px solid black;
    background-color: black;
}
.buttons {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 9px;
    display:none;
}
.next
{
    font-size:18px;
    border-radius: 3px;
    width:100%;
    text-align:center;
    font-family:Arial;
    cursor:pointer;
    padding: 10px;
    margin-top: 5px;
    font-weight: bold;
    color: black;
    background-image: linear-gradient(to right bottom, rgb(100, 100, 100), #ffffff);
}