.bd{
    border: 2px solid white;
}
.bb{
    border: 2px solid black;
}
:root{
    --webcolor: rgb(0, 64, 128);
}
@font-face {
    font-family: poppins;
    src: url(./Poppins-Regular.ttf);
}
body{
    font-family: poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url(./images/landing-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.517);
    background-blend-mode: darken;
    height: 100vh;
    /* background-position: center center; */
}

#speaker{
    color: white;
    font-size: 45px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800; 
    /* position: absolute; 
    bottom: 10px;
    left: 50px; */
}

html{
    scroll-behavior: smooth;
}
.web-gradient{
    background: linear-gradient(90deg, #fb8c00 0%, purple 100%);
}
.webcolor{
    background-color: var(--webcolor);
}

.neww{
    margin-top: 90px;
    margin-bottom: 50px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.anosec{
    filter: grayscale(100%);
}

.anosec:hover{
    filter: grayscale(0%);
    transition: .20s ease-in-out;
}

.neww h1{
    font-size: 32px;
    margin-top: 25px;
}

.neww p{
    padding: 0 30%;
    margin-bottom: 20px;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn{
    padding: 7px 14px;
    font-size: 12px;
    border: none;
    outline: none;
    background: linear-gradient(90deg, #fb8c00 0%, purple 100%);
    color: white;
    font-weight: bold;
    cursor: pointer;
    /* border-radius: 3px; */
}
.w-container{
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 25px;
    /* border: 1px solid white; */
}

@keyframes slide{
    0%{
        opacity: 0;
        transform: translateY(15px);
    } 100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.slide{
    animation: slide 0.3s linear;
}


.holder{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: white 3px solid; */
}

.contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#shop{
    font-size: 45px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
}

#shop-p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.contents-content{
    /* width: 250px;
    height: 450px; */
    /* border: 3px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 70px;
}

.cont1{
    width: 250px;
    height: 420px;
    /* border: blue 3px solid; */
    border-radius: 24px;
    background-color: white;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
.contimg{
    max-width: 230px;
    border-radius: 20px;
    margin-top: 18px;
}

.bname{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: black;
}

.pricetag{
    font-size: 39px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    color: black;
}

.buy{
    padding: 5px 20px;
    color: white;
    background-color: orange;
    border-radius: 18px;
    font-weight: 700;
}

.more{
    color: black;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media only screen and (max-width: 650px) {
    .contents-content{
        flex-direction: column;
    }
}

#file{
    border: 1px solid rgb(0, 0, 0);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    background-color: #f9f9f9f9;

}

.me{
    color: blue;
    text-decoration: underline;
}