@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&family=Shantell+Sans:wght@300&display=swap');

*{
    padding: 0;
    margin: 0;

}
.wrapper{
    height: 100vh;
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;

}

#quote-box{
    padding: 60px;
    width: 600px;
    height: 600px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 14px;
    gap: 50px;

}



a>img{
    width: 40px;
    height: 40px;
}

span#content{
    font-size: 30px;
    font-family: 'Shantell Sans', cursive;

}

span#author-name{
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;

}

button{
    background-color: green;
    color: white;
    width: 110px;
    height: 60px;
    border-radius: 12px;
}
button:hover{
    background-color: lightgreen;
    color: black;
}