img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

body {
    text-align: center;
    background-color: #7da0ca;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.ContenedorPrincipal {
    background-color: white;
    border: 1px solid white;
    border-radius: 10%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    height: auto;
    max-width: 500px;
    width: 90%;
    margin: 40px auto;
    padding: 20px;
}

aside {
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
}

aside button {
    background-color: #0d8fd5;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

aside button:hover {
    background-color: #104a6c;
}

.button {
    text-decoration: none;
}

/* -------------------------------
   MEDIA QUERY PARA CELULARES
-------------------------------- */

@media (max-width: 768px) {
    img {
        width: 140px;
        height: 140px;
    }

    .ContenedorPrincipal {
        width: 90%;
        padding: 20px;
    }

    aside {
        position: static;
        margin-bottom: 20px;
        text-align: center;
    }

    aside button {
        font-size: 18px;
        width: 80%;
    }
}
