body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f64646;
    color: #fff;
    padding: 20px;
    text-align: center;
    
}

nav {
    background-color:#fff;
    color: #100f0f;
    padding: 10px;
    position: fixed; /* Nuevo */
    top: 142px; /* Nuevo */ 
    left: 0; /* Nuevo */
    bottom: 90px; /* Nuevo */
    width: 200px; /* Nuevo */
    overflow-y: auto; /* Nuevo */
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu {
    list-style-type: none;
    padding: 10;
    margin: 10;
}

.menu li {
    margin-bottom: 20px;
}

.menu li a {
    color: #276dd7;
    text-decoration: none;
}

main {
    padding: 20px;
    margin-left: 220px; /* Nuevo */
    margin-top: 70px; /* Nuevo */
    margin-bottom: 70px; /* Nuevo */
}

section {
    margin-bottom: 20px;
}

footer {
    background-color:#f64646;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed; /* Nuevo */
    bottom: 0; /* Nuevo */
    left: 0; /* Nuevo */
    right: 0; /* Nuevo */
}

p {
    line-height: 1.5;
}
img { 
    width: 400px;
    height: 400px;
    border-radius: 10%;
    object-fit: cover;  
}

