body, header, nav, section, footer, .container {
    display: flex;
}

body {
    flex-direction: column;
    margin: 0;
    background-color: #1F2937;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

body > * {
    padding: 72px 10%;
}

header {
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 0 0;
    padding-top: 0;
    padding-bottom: 0;
}

header > .logo {
    align-items: center;
    gap: 10px;
}

header > .logo > h1 {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: bold;
    margin: 0;
}

.logo-image {
    width: 36px;
}

header > nav {
    gap: 30px;
}

a, .introduction .text > p {
    color: #E5E7EB;
    text-decoration: none;
}

.introduction {
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.introduction > * {
    width: 400px;
}

.introduction > .text > * {
    margin: 0 0 14px 0;
}

.introduction > .text > h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.sign-up-button {
    background-color: #3882F6;
    color: #E5E7EB;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 36px;
    border-radius: 8px;
    border: 0;
}

.daily-images {
    flex-direction: column;
    background-color: #F9FAF8;
    padding-top: 36px;
    align-items: center;
    color: #1F2937;
}

.daily-images > h1 {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 36px 0;
}

.daily-images > .container {
    gap: 48px;
}

.daily-image {
    margin: 0;
    width: 180px;
}
.daily-image > img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: #3882F6 solid;
    border-radius: 12px;
}

#eating-panda {
    object-position: 100% 0%;
}

.daily-image > figcaption {
    margin: 4px;
    text-align: center;
}

.quote {
    flex-direction: column;
    background-color: #E5E7EB;
    padding-left: 16%;
    padding-right: 16%;
    color: #1F2937;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
}

.quote > p {
    margin: 0;
}
.quote > .source {
    text-align: right;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    margin-top: 20px;
}

.sign-up {
    background-color: #F9FAF8;
    justify-content: center;
    align-items: center;
}

.sign-up > .container {
    background-color: #3882F6;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    padding: 42px 0;
    border-radius: 5px;
}

.sign-up > .container > .text > * {
    margin: 0;
    padding: 0;
}

.sign-up > .container > .text > h1 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
    color: #F9FAF8;
}

.sign-up > .container > .text > p {
    font-weight: 300;
    color: #E5E7EB;
}

.sign-up > .container > .sign-up-button {
    border: #F9FAF8 solid 2px;
}

footer {
    padding: 0;
    justify-content: center;
    align-items: center;
    color: #E5E7EB;
    font-weight: 300;
}