header {
    background-color: #f8f9fa;
    padding: 10px;
    text-align: center;
    background-image: url('/imagenes/cabecera.jpg');
    background-repeat: repeat-x;
    background-position: bottom;
    min-height: 250px;
    position: relative;
}

header #logo {
    height: 200px;
    width: auto;
    left: 50%;
    top: 20px;
}

nav {
    background-color: rgba(255, 255, 255, 0.35);
}

nav a {
    color: white;
    text-decoration: none;
}

nav ul {
    list-style-type: none;
    margin: 0 auto;
    position: relative;
    max-width: 1000px;
    overflow: hidden;
    padding: 0;
}

nav ul li a, nav ul a {
    display: block;
    position: relative;
    padding: 25px 10px;
    color: #555;
    margin: 0;
    box-sizing: border-box;
    float: left;
}

nav ul li a:hover {
    color: #555;
    background-color: rgba(255, 255, 255, 0.75);
    transition: .5s;
    color: #8507a4;
}


nav ul a.active {
    color: #8507a4;
}

#socials {
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0 auto;
}

#socials a .icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

nav a:hover {
    color: #715fce;
    transition: .5s;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d7e8f8;
}

main {

}

main .content {
    max-width: 1080px;
    margin: auto;
}

.cuerpo {
    background-color: #fff;
    color: #555;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    max-width: 90%;
    text-align: center;
}

.cuerpo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cuerpo p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .cuerpo {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .cuerpo h2 {
        font-size: 1.5rem;
    }
    
    .cuerpo p {
        font-size: 1rem;
    }
}

footer {
    background-color: #d7e8f8;
    color: #343a40;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
}

a.gradient {
    color: #8407A3; 
    background-image: linear-gradient(45deg, #8407A3 0%, #725FCF 100%); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: bold;
}