body {
    font-family: 'Courier New', Courier, monospace;
}

.header {
    background: #BBB;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 60px;
}

nav li {
    display: inline;

}

li {
    list-style: none;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 22px;
}

nav a:hover {
    color: rgb(87, 87, 255, 0.8);
}

.productos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin: 40px 0px;
}


.li-cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 320px;
    margin: 0px 20px;
    padding: 10px 0px;
    height: 400px;
    border: 2px solid #000;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px #000;
}

.li-cards:hover {
    border: 2px solid rgb(87, 87, 255);
    box-shadow: 0px 0px 10px 0px rgb(87, 87, 255);
    scale: 1.01;
}

h2 {
    font-weight: bold;
    font-size: 30px;
    margin:10px 0px;
}

.description {
    max-width: 280px;
    margin: 5px 0px 10px 0px;
    font-weight: 700;
}


.precio {
    max-width: 280px;
    margin: 0px 0px 10px 0px;
    font-weight: 700;
    font-size: 25px;
}

.img-card {
    width: 15rem;
    height: auto;
}

footer {
    background: url("/barberia-alura/imagenes/bg.jpg");
    color: #fff;
    height: auto;
    width: 100%;
}

.footer {
    text-align: center;
    padding: 0 60px;
    padding: 40px;
}

.footer > p {
    font-weight: bold;
}