*{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

#container{
    width: 100%;
    height: 100vh;
    background:linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#main { 
    background-color: white;
    width: 70%;
    max-width: 500px;
    border: 2px solid blue;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;

}

#heading{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5vmax;
    margin-bottom: 0.5vmax;
}

#heading h1{
    text-align: center;
    font-size: 2vmax;
    position: relative;
}
#heading h1::after{
    content: "";
    width: 50%;
    height: 3px;
    background: rgb(20, 120, 230);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

#main blockquote{
    font-size: 1vmax;
    text-align: center;
    padding: 1vmax;
}

#main blockquote::after , #main blockquote::before{
    content: '"';
}

#author{
    text-align: right;
    padding-right: 5px;
    font-size: 1vmax;
    position: relative;
    margin-bottom: 1vmax;
}

#buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vmax;
    margin-bottom: 1vmax;
    
}

.gen{
    padding: 0.3vmax 0.8vmax;
    font-size: 0.8vmax;
    text-align: center;
    border-radius: 10px;
    /* border: 1px solid black; */
    background-color: rgb(47, 148, 249);

}



