body {
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

header {
    background-color: bisque;
    text-align: center;
    min-width: 100%;
}

main {
    display: flex;
    flex-direction: column;
}

.quote-container {
    background-color: cadetblue;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}