body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    text-align: right;
    padding: 10px;
}

.logo-universidad {
    width: 150px; 
    height: auto;
    margin-right: 20px;
}

.container {
    text-align: center;
    margin-top: 50px;
}

h1 {
    font-size: 3em; 
    margin-bottom: 40px;
}

.profiles {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    gap: 40px; 
}

.profile {
    background-color: #fff;
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 300px; 
    text-align: center;
}

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

.profile h3 {
    font-size: 1.5em; 
    margin-bottom: 15px;
}

.profile p {
    font-size: 1.1em; 
    color: #555;
}
