body {
    background-image: url(bodyfonder.jpg);
    margin: 0;
    font-family: Arial, sans-serif;
}


h1 {
    color: white;
    text-align: center;
    margin-top: 20px;
}

h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.titulo-principal {
    color: yellowgreen;
}

.Contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.Caja {
    width: 200px;
    padding: 10px;
    background-color: #4e5246;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.Caja:hover {
    transform: scale(1.05);
}

.Caja img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.Caja h1 {
    font-size: 16px;
    color: white;
    margin: 0;
}



  .Build{
    text-align: center;
  }
header{
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    background-color: rgb(0, 0, 0);
    width: 100%;
}
header ul{
    list-style: none;
    display: flex;
    flex-direction: row;
}
header ul li{
    margin: 10px;
}
