*{
    margin: 0;
    padding: 0;
}
body{
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}
.nav{
    position: absolute;
    background-color: rgb(255, 187, 0);
    top: 0;
    width: 100%;
    height: 35px;
    padding: 1em 0;
}
.nav button{
    position: absolute;
    z-index: 1;
    right: 0;
    background-color: transparent;
    border: none;
    margin: 0 5%;
}
.nav button a{
    text-decoration: none;
    color: black;
    &:hover{
        text-decoration: underline;
        color: white;
        cursor: pointer;
    }
}



.header{
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 35px;
    display: grid;
    background-color: rgb(248, 207, 152);
}


.figure{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.img-prod-borgues{
    position: relative;
    left: -1500px;
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}
.imagenes-productos{
    width:7%;
}
.logo-borgues{
    z-index: 1;
    width: 300px;
    cursor: pointer;
    border:  2px solid black;
    &:hover{
        border:  2px solid white;
    }
}

.div-footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5%;
    display: flex;
}
.div-footer h2{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4%;
    font-size: 50px;
}
@font-face{
    font-family: 'luz';
    src: url(/Homemade.otf)
}
.div-footer h3{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    font-size: 50px;  
    background-color: rgb(255, 187, 0);
    padding: 3%;
    font-family: 'luz';
}