
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    color: #fff;
    padding: 30px 0;
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-size: 18px;
}
.centro {
    max-width: 900px;
    margin: 40px auto;
    display: table;
    padding: 32px;
    border: 1px solid #333;
}
p {
    margin: 0;
    padding: 10px;
    text-align: center;
    color: #333;
}

.main-navigation {
    background-color: #add8e6;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.page-header {
    background-color: #90ee90;
    padding: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.media-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    background-color: #afeeee;
    margin-bottom: 20px;
}

.media-item {
    background-color: #ffc0cb;
    width: 20%;
    padding: 40px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle-section-spacer {
    background-color: #87ceeb;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.main-content-section {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    background-color: #ffb6c1;
    margin-bottom: 20px;
}

.content-left-media,
.content-right-media {
    background-color: #ffc0cb;
    width: 25%;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-middle-text {
    background-color: #90ee90;
    flex-grow: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.bottom-content-area {
    background-color: #ffff99;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom-media-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.bottom-media-item {
    background-color: #ffc0cb;
    width: 48%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-text-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.bottom-text-item {
    background-color: #90ee90;
    width: 48%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}


.page-footer {
    background-color: #add8e6;
    padding: 30px;
    text-align: center;
    margin-top: auto;
}

