body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fef6f0;
    margin: 0;
    padding: 0;
    text-align: center;
        }
header {
    background-color: #ff0800;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .logo img {
    width: 50px;
}

ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;

}
.principal{
   
    text-align: center;
    padding: 10px 5px;
    font-family: 'Georgia', serif; 
    font-weight: normal; 
    color: #2c3e50; 
    margin-top: 20px;
}
.principal h1{
    font-size: 36px;
    margin-bottom: 10px;
    text-decoration: underline
}
.principal p{
    font-size: 20px; 
    text-align: left;         
    width: 40%;                
    margin-left: 10px;         
    margin-right: auto;        
    font-family: Arial, sans-serif;
    line-height: 1.5;
}
.contenedor-productos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
  justify-items: center; 
  margin: 20px auto;
  max-width: 1200px; 
}
.producto {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin: 20px;
    width: 250px;
    background-color: #fff;
}
.producto img {
    width: 100%;
    border-radius: 10px;
}

button {
    background-color: #ff0011;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}
button:hover {
    background-color: #e76e7a;
}

footer {
    text-align: center;
    padding: 20px;
    color: rgb(0, 0, 0);
    margin-top: 40px;
}
a{
    color: black;
    
}