* {
    text-align: center;
    color: white;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #c4ebf9;
    margin: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

header {
    background-color:#02bfb1;
    margin: 20px;
    padding: 20px;
}

main {
    display: flex;
    padding: 20px;
    flex-grow: 1;
}

aside {
    justify-content: space-around;
    display: flex;
    background-color: #6edb6e;
    width: 10rem;
    margin-right: 20px;
    padding-top: 10px;
    flex-direction: column;
}

article {
    background-color: #fbb04c;
    flex-grow: 1;
    margin-left: 20px;
    padding-top: 10px;
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
}

article .text {
    justify-content: center;
    flex-grow: 1;
    align-items: flex-end;
    display: flex;
}

.images-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    flex-grow: 1;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    align-content: stretch;
}

footer {
    background-color:#02bfb1;
    margin: 20px;
    padding: 20px;
    margin-bottom: 20px;
}