.container {
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    background-color: rgba(98, 97, 97, 0.8); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic';
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #272525;
    color: #000000;
    border-radius: 20%;
    background-image: url('img/burbuja.jpg');
    background-size: cover; 
    background-position: center; 
}

header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile p {
    align-items: center;
}

.profile img {
    width: 200px; 
    height: 200px; 
    border-radius: 50%;
    margin-bottom: 20px; 
}


nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #45a3bb;
}

main {
    padding: 20px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

section {
    margin-bottom: 40px;
}

/* Estilos responsivos */
@media screen and (min-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .profile img {
        width: 100px; /* Tamaño más grande */
        height: 100px; /* Tamaño más grande */
        margin-bottom: 0;
    }
}