body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: rgb(137, 73, 198);
    top: 0%;
    

}
nav{
    background-color: rgb(54, 35, 225);
}
   
nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    
    
}

nav ul li { 
    margin: 0 1rem;

}
nav ul li a{
    color:beige;
    text-decoration: none;
    padding: 15px 20px;
    display: block;

}

main {
    padding: 2rem;
}

/* PAra Index */
.intro{
    text-align: center;
    margin: 30px;
}

.profile-img {
    width: 150px;
    border-radius: 50%;
}

footer {
    background-color: rgb(72, 53, 193);
    color:beige;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    
}

/* pagina de trabajos */

/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 50vh;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

main {
    flex: 1;
    padding: 20px;
    text-align: center;
}

h1 {
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.project img {
    width: 100%;
    border-radius: 8px;
}

.project h2 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.project p {
    font-size: 1em;
    color: #666;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}



/* comentario */

/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #333;
    color: white;
    padding: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

main {
    flex: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.comments {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 500%;
}

.comments h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}

.social-links img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    border-radius: 50%;
}

.social-links a:hover img {
    filter: brightness(1.2);
}

.social-links a:hover {
    text-decoration: underline;
}

