*{
    margin: 0;
    padding: 0;
    border: box;
}
/* Margin sirve para separar*/
/* Padding sirve para expander el espacio entre el texto y la cajita*/
body {
    background-color: white;
    font-family: sans-serif;
    font-weight: bold;

}

header nav {
    width: 98vw; /* View width */
    height: 80px;
    font-size: 16px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1;
}
/* con # se ponen los id*/
#pinterest-icon{
    width: 30px;
    height: 30px;
    padding: 10px;
}

#pinterest-icon:hover{
    background-color: #e9e9e9;
    border-radius: 150px;
}
/* con . se ponen las clases */
.first-list{
    display: flex;
}
.first-list li{
    list-style: none;
    padding: 14px 12px; /* empieza arriba y da la vuelta como manecillas de reloj*/
}

.first-list a{
    text-decoration: none;
    color: black;
}

#inicio{
    background-color: black;
    color: white;
    padding: 12px 12px;
    border-radius: 25px;
}

.search{
    flex-grow: 1;
    height: 48px;
    background-color: #e9e9e9;
    border-radius: 30px;
}

.search:hover{
   background-color: #e1e1e1 ;
}

.search:focus-within{
    border: 4px solid #7fc1ff;
}

.barra{
    display: flex;
    align-items: center;
    height: 48px;
}

#lupa{
    padding: 13px;
    color: #767676;
    font-size: 20px;
    font-weight: bolder;
}

.barra input{
    border: none;
    background-color: inherit;
    padding: 0px 8px 0px 0px;
    font-size: 16px;
    outline: none;
}
.right-items span{
    padding: 8px;
    color: #767676;
    font-size: 28px;
}
.right-items span:hover{
    background-color: #e9e9e9;
    border-radius: 150px;
    cursor: pointer;
}

.content{
    position: absolute;
    margin-top: 80px;
}

.images{
    columns: 5 290px; /* 5 columnas de 240px de ancho*/
    margin: auto;
}

.card-image{
    position: relative;
    padding: 6px;
}

.card-image img{
    border-radius: 15px;
    min-width: 260px;
    max-width: 260px;
}

.card-image:hover > :first-child{
    filter: brightness(60%);
}

.card-image:hover > *{
    visibility: visible;
    display: inline;
}

.button{
    position: absolute;
    left: 56%;
    top: 4%;
    padding: 13px 15px;
    background-color: #e60023;;
    border-radius: 30px;
    border: none;
    visibility: hidden;
}

.button a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.oculto1{
    position: absolute;
    left: 57%;
    bottom: 20px;
    background-color: white;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50px;
    padding: 4px;
    color: black;
    visibility: hidden;
    display: none;
}

.oculto2{
    position: absolute;
    left: 74%;
    bottom: 20px;
    background-color: white;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50px;
    padding: 4px;
    color: black;
    visibility: hidden;
    display: none;
}