body{
    background-color: #81ADC8;
    /* font-family: 'Spirax', cursive; */
    /* font-family: 'Lobster', cursive; */
    /* font-family: 'Satisfy', cursive; */
    font-family: 'Karla', sans-serif;
    /* margin: 0 auto; */
}

.container{
    background-color: #E8F1F2;
    position: absolute;
    width: 50%;
    height: auto;
    padding: 20px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 10px 10px 15px #244a61;
}
.container h1{
    text-shadow: 2px 2px 1px rgb(141, 141, 141);
}
.quote{
    margin: 20px;
    font-size: 2vw;
}
.author{
    font-size: 1.5vw;
}

.next{
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    background-color: #6cc8d6;
    border: none;
    color: #333;
    padding: 10px;
    width: 100px;
    transition-duration: .4s;
    /* overflow: hidden; */
    box-shadow: 5px 5px 10px #107888;
    border-radius: 4px;
    font-weight: 600;
}
.next:hover{
    background: #fff;
    box-shadow: 0px 2px 10px 5px #59a4af;
    color: #000;
}

@media only screen and (max-width:500px){
    .quote{
        font-size: 5vw;
        text-align: left;
    }
    .author{
        font-size: 4vw;
        
    }
}