/** Write your CSS in here **/
body{
    background-color: #cbab57;
    display: flex;
    justify-content: center;
}
main{
    display: flex;
    flex-direction: column;
    background-color: white;
    margin:100px;
    align-items: center;
    opacity: 0.8;
    border-radius: 2%;
    font-family: Arial, Helvetica, sans-serif;
    width: 1000px;
    height: 600px;
    color: #503c20;
}
#newBtn{
    background-color: lightgray;
    width: 120px;
    font-size: 20px;
    align-self: flex-end;
    margin: 5px 40px 15px 20px;
    padding: 2px;
    border:1px solid #25729a; 
    border-radius: 3px;   
}
#quote{
    font-size: 30px;
    margin: 15px 40px;
    padding: 15px 40px;
    height: 80%;
}
#author{
    font-size: 25px;
    align-self: flex-end;
    margin: 5px 40px 5px 0px;
    padding: 5px;
}
