* {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
header {
    background: linear-gradient(to right, #ff7a00, #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    padding: 15px;
}
header > p {
    font-size: 28px;
}
.logo {
    max-width: 80px;
    margin-right: 15px;
}
nav {
    background-color: #ffd000;
}
nav ul {
    display: flex;
    justify-content: center;
    padding: 10px;
}
nav li {
    list-style: none;
    margin: 0 20px;
}
a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    color: red;
}
main {
    flex: 1;
    padding: 20px;
    background-color: #fff8e1;
}
section {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    padding: 20px;
    min-height: 200px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
}
.titulo {
    width: 100%;
    text-align: center;
    font-size: 60px;
    text-shadow: 2px 2px 5px black;
    margin-bottom: 30px;
}

.titulo strong {
    font-size: 60px;
    color: red;
}
article {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    width: 300px;
    text-align: center;
    color: black;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
article:hover {
    transform: scale(1.05);
}
.pastel {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
article h2 {
    margin-top: 10px;
    color: #ff5a00;
}
article p {
    color: #555;
    margin: 5px 0;
}
aside {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
aside h2 {
    color: #ff5a00;
    font-size: 24px;
    margin-bottom: 10px;
}
aside p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
footer {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: #ffd000;
}
footer h6{
    font-weight: normal;
}
footer ul {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    list-style: none;
}
footer li {
    font-size: 16px;
    color: white;
    margin: 5px 0;
}