*{
    padding: 0; margin: 0; box-sizing: border-box;
}
body{
    background-color: #fa3543;
    font-family: 'Poppins', sans-serif;
}
.container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg{
    background-color: white;
    position: relative;
    min-width: 250px;
    min-height: 410px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quotecont{
    background-color: #fa3543;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 300px;
    border-radius: 7px;
    padding: 2rem;
    box-shadow: 20px 10px 40px #970c157a;
}
.quote{
    color: white;
}
.quote .content p{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: .9rem;
    font-style: italic;
    color: rgb(238, 221, 221);
    transition: .3s ease;
}
.container.fade .content p, .container.fade .author h3{
    opacity: 0;
    transition: .3s ease;
}
.quote .author h3{
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 1rem;
    transition: .3s ease;
}
#btn{
    border: none;
    padding: 15px 2.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 18px;
    color: #fa3543;
    font-weight: 600;
    cursor: pointer;
    background-color: rgb(248, 232, 232);
}

@media screen and (min-width: 768px){
    .bg{
        min-width: 350px;
        min-height: 450px;
    }
    .quotecont{
        min-width: 470px;
        padding: 3rem;
    }

}