html,
body {
    font-family: "Nunito", monospace;
    color: MediumVioletRed;
    margin: 0;
    padding: 0;
    background: rgba(209,79,144);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1 {
    text-wrap: balance;
}

canvas {
    display: block;
    width: 100%;
    border-radius: 10px;
}

main {
    width: min(90vw, 800px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
}

main > div {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}

@media (orientation: portrait) {
    main > div {
        width: 96%;
        margin: 2%;
        float: none;
    }
}

canvas {
    border-radius: 10px;
}

#pecinco {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 300px;
}
span {
    text-decoration: underline;
}
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    line-height: 2rem;
    border-bottom: 2px solid MediumVioletRed;
    display: flex;
    padding: 0.5rem 0;
    align-items: center;
    transition: background-color 0.2s;
}
li:hover {
    background-color: rgba(209,79,144, 0.5);

}

li img {
    border-radius: 50% 50%;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    object-fit: cover;
    transition: transform 0.2s;
}
li:hover img {
    transform: scale(1.1);
}
a {
    color: MediumVioletRed;
    text-decoration: none;
    font-weight: 450;
    transition: color 0.2s;
    display: block;
    padding: 2px 0;
}

a:hover {
    color: MediumVioletRed;
    text-decoration: underline;
}




















