body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 24px;
    padding: 24px;
    background-color: #f8f2ea;
}

.header {
    grid-column: 1 / -1;
    position: sticky;
    margin: 20px;
    padding: 0 30px;
    z-index: 10;
    background-color: #8cb369;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}
.header img {
    height: 30px;
    width: 90px;
    align-content: center;
}


.header nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.header nav a:hover {
    text-decoration: underline;
}

.dibujito {
    width: 100%;
    max-width: 280px;
}

.dibujito img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.informacion {
    width: 100%;
    max-width: 100%;
    border: 7px solid #8e4162;
    background-color: #f5f5f5;;
}

.informacion p {
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
    }

    .dibujito {
        margin: 0 auto;
    }
}