@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    font-family: 'Lato', sans-serif;
}
.wrapper{
    width: 100vw;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    border: 1px solid rgb(168, 168, 168);
    padding: 1rem;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.quote{
    font-size: 3rem;
}
.author {
    align-self: flex-end;
    font-size: 1.5rem;
    font-weight: bold;
}
button , a{
    justify-self: flex-end;
    align-self: flex-end;
    width: 10rem;
    height: 3rem;
    font-size: 1.5rem;
    cursor: pointer;
    outline: none;
    border: none;
    background-color: rgb(0, 102, 255);
    color: white;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.buttons{
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}