@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2&display=swap');
*
{
    margin: 0;
}
.navbar
{
    text-align: center;
    color: royalblue;
    font-size: 1.9vw;
    font-family: 'Baloo Da 2', cursive;
}
.container
{
    height: 82vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.Quote_container
{
    border: 2px solid darkcyan;
    background-color: darkcyan;
    height: 65vh;
    width: 70vw;
    box-shadow: 0px 10px 25px 9px dimgrey;
    border-radius: 18px;
}
.bi-quote
{
    width: 3rem;
    position: relative;
    top: 2rem;
    left: 4rem;
}
.quote
{
    width: 52vw;
    height: 30vh;
    color: papayawhip;
    margin-top: 3vh;
    font-family: 'Baloo Da 2', cursive;
    margin-left: 9vw;
    font-size: 1.8vw;
}
.author
{
    top: 15vh;
    width: 28vw;
    position: relative;
    left: 37vw;
    font-size: 1.5vw;
    color: skyblue;
    font-family: 'Baloo Da 2', cursive;
    text-align: end;

}
.button
{
    padding: 2vh 6vw;
    position: relative;
    font-size: 1.5vw;
    border-radius: 30px;
    outline: none;
    border: none;
    left: 38vw;
    cursor: pointer;
    box-shadow: 0px 6px 11px 1px darkgrey;
}
.button:hover
{
    letter-spacing: 1px;
    transform: scale(1.1);
    transition: all 0.5s;
}

/* media queries */

@media (max-width:1200px) {
    .quote
    {
        margin-left: 11vw;
        height: 33vh;
    }
    .author
    {
        top: 10vh;
        left: 40vw;
    }
    .button
    {
        left: 39vw;
    }

}
@media (max-width:960px) {
    .quote
    {
        margin-left: 5vw;
        width: 63vw;
        height: 24vh;
    }
    .bi-quote
    {
        left: 0;
    }
    .author
    {
        top: 18vh;
        width: 29vw;
        left: 34vw;
    }
    .button
    {
        left: 39vw;
    }
    .navbar
    {
        font-size: 3.5vw;
    }
}
@media (max-width:820px) {
    .quote
    {
        margin-left: 6vw;
    }
    .button
    {
        left: 39vw;
    }
    .bi-quote
    {
        left: 0rem;
        width: 2rem;
    }
}
@media (max-width:670px) {
    .quote
    {
        margin-left: 7vw;
    }
    .author
    {
        left: 35vw;
    }
}
@media (max-width:500px) {
    .navbar
    {
        font-size: 5vw;
    }
    .container
    {
        height: 72vh;
    }
    .Quote_container
    {
        height: 60vh;
        width: 89vw;
    }
    .bi-quote
    {
        width: 7vw;
        top: 3vh;
    }
    .quote
    {
        font-size: 3vw;
        width: 75vw;
        margin-top: 0vh;
        margin-left: 9vw;
        height: 36vh;
    }
    .author
    {
        left: 34vw;
        top: 7vh;
        font-size: 3vw;
        width: 50vw;
    }
    .button
    {
        left: 36.5vw;
        top: 0vh;
        font-size: 3.2vw;
    }
 }
 
@media (max-width:400px) {
    .navbar
    {
        font-size: 5vw;
    }
    .container
    {
        height: 84vh;
    }
    .Quote_container
    {
            height: 65vh;
    width: 92vw;
    }
    .bi-quote
    {
        width: 7vw;
        top: 3vh;
    }
    .quote
    {
        font-size: 5vw;
        height: 48vh;
        width: 80vw;
        margin-left: 7vw;
    }
    .author
    {
        left: 11vw;
        top: 3vh;
        font-size: 4.5vw;
        width: 76vw;
    }
    .button
    {
        left: 32vw;
        top: -2vh;
        font-size: 4.2vw;
    }
}
@media (max-width:300px) {
    .Quote_container
    {
        height: 55vh;
    }
    .quote
    {
        height: 42vh;
    }
    .button
    {
        top: -9vh;
    }
}