*{
    padding: 0;
    margin:0;
    transition: all 250ms;
}
body{
    padding: 35px 0 0 0;
}
main>section>section {
    border:2px solid rgb(216, 221, 252);
}
main{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}
.sectionS-L-R{
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    box-sizing: border-box;
    overflow: hidden;
}
.Menu-tienda{
    display: flex;
    width: fit-content;
    flex-direction: column;
    h1{
        
        background: black;
        color: white;
    }
   
}

a{
    text-decoration: none;
    color: white;
    
}
a:focus{
    border-bottom: 2px solid white;
}

.Nav-Bar{
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 30px;
    background: rgb(0, 49, 163);
    
}
.Nav-Bar>ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding:0 20px;
    gap:  40px;
    box-sizing: border-box;
    align-items: center;
    list-style: none;
    li{
        color: white;
    }

}
.section-Left{
    
    width: 350px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 10px;
    box-sizing: border-box;
    img{
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: fill;
    }
}
h1,h2,h3,h4,h5,h6{
    margin:10px 0;
}
.section-Right{
    
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
   
}
.section-Right ul{
    margin: 10px 20px;
}
.noVisible{
    display: none;
}
.Visible{
    position: fixed;
    top: 50%;left: 50%;
    transform: translate(-50%,-50%);
    width: 900px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: black;
    color: white;
}
.SectionPassword{
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    gap: 10px;
    input{
        background: transparent;
        outline: none;
        border:none;
        border-bottom: 2px solid white;
        color: white;
        width: 30px;
        text-align: center;
    }
}

.QR{
    width: 300px;
}
.Menu {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-around;
}
.Menu img{
    width: 200px;
}




@media (width<700px){
    main,body{
        flex-direction: column;
        justify-content: center;
    }
    .Nav-Bar{
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .Nav-Bar>ul{
        gap: 0;
        justify-content: space-between;
    }
    .sectionS-L-R{
        margin: 0 auto;
        flex-direction: column;
    }
    .QR,.Menu{
        display: none;
    }
    .Visible{
        position: fixed;
        top: 50%;left: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background: black;
        color: white;
    }
    .SectionPassword{
        width: 50%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        
        gap: 10px;
        input{
            background: transparent;
            outline: none;
            border:none;
            border-bottom: 2px solid white;
            color: white;
            width: 30px;
            text-align: center;
        }
    }
} 