
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
.bg{
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

}
main.index{
    max-width: 530px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    height: 100vh;
    color: white;
    flex-direction: column;
    font-family: 'Helvetica';
}

main.shop{
    max-width: 530px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
    height: 100vh;
    color: white;
    flex-direction: column;
    font-family: 'Helvetica';
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    height: 100vw;
    z-index: -2;
}

body{
    background: #000 !important;
    overflow: hidden;
    margin: 0;
}

.productimg img{
    
height: 75px;
width: 75px;
border-radius: 50%;

}

.companyname h1{
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.productname{
    
    display: flex;
    justify-content: space-between;
    align-items: center;


}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/HelveticaNeueLT-BlackExt.eot');
    src: url('../fonts/HelveticaNeueLT-BlackExt.eot?#iefix') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLT-BlackExt.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLT-BlackExt.woff') format('woff'),
        url('../fonts/HelveticaNeueLT-BlackExt.ttf') format('truetype'),
        url('../fonts/HelveticaNeueLT-BlackExt.svg#HelveticaNeueLT-BlackExt') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




.productname h2{
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.productname p{
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    font-family: 'HelveticaNeue', sans-serif;
}

.productBtns{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;


}

.productBtns a{
    width: 100%;
    cursor: pointer;

    height: 50px;
    border-radius: 5px;
    border: none;
    font-size: 0.8rem;
    transition: all 0.3s ease-in-out;
    font-family: 'HelveticaNeue', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

}

.productBtns a:hover{
    transform: scale(1.05);
}

.btn-dark{
    background: #000;
    color: white;
}

.discount_box{
    background: #00000085;
    border-radius: 20px;
}

