:root {
    --normal-txt: 'Sans-serif', Arial;
    --menu-bar-itme-color: rgb(232, 232, 232);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--normal-txt);
}

.main-body {
    width: 100%;
    background-image: url('images/background_image_with_3d_shapes_blue_purple.png');
    background-size: cover;
    height: fit-content;
    padding-bottom: 50px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    display: flex;
    justify-content: center;
    background-attachment: fixed;
}

/* ************************* 
   slidshow classes */

.mySlides {
    display: none
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    width:60%;
    position: relative;
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

.prev{
    left: 30px;
}

/* Position the "next button" to the right */
.next {
    right: 30px;
    border-radius: 50%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.273);
    backdrop-filter: blur(20px);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: fit-content;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    background-color: rgba(92, 92, 92, 0.44);
    border-bottom-right-radius: 20px;
    backdrop-filter: blur(10px);
}

.dot-containser{
    position: absolute;
    right: 30px;
    bottom: 18px;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgba(255, 253, 253, 0.336);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    transition-duration: width 2s ease;
}

.active{
    width: 25px;
    border-radius: 5px;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 253, 253, 0.458);
}

.dot:hover {
    backdrop-filter: blur(100px);
    background-color: #3660857f;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

.whats-new{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.popular{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgb(196, 216, 222);
}

.categories{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.title{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 30px;
}

.title img{
    width: 40px;
    margin-top: 0px;
    margin-right: 15px;
}

.title h1{
    font-size: 40px;
    margin-top:30px;
    color: rgb(29, 18, 79);
}

:root{
    --cat-item-height: 130px;
    --cat-item-width : 500px;
}

.categories .placeholder1{
    width: 90%;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-columns: repeat(auto-fill, minmax(var(--cat-item-width), 1fr));
    row-gap: 20px;
    margin-bottom: 100px;
}

.categories .placeholder1 .item{
    width: var(--cat-item-width);
    background-color: rgb(238, 238, 238);
    display: flex;
    align-items: center;
    height: var(--cat-item-height);
    place-self: center;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.categories .placeholder1 .item:hover img{
    transform: scale(1.2);

}

.categories .placeholder1 .item .item-image{
    width: 174px;
    height: 130px;
    overflow: hidden;
}

.categories .placeholder1 .item img{
    width: var(--cat-item-height);
    height: var(--cat-item-height);
    transition: transform .5s ease;
}

.categories .placeholder1 .item-name{
    width: 100%;
    text-align: center;
    font-size: 25px;
}

.subscribe {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(225, 247, 246);
}

.subscribe .holder{
    width: 40%;
    display: inline-flex;
    position: relative;
    align-items: center;
    margin-bottom: 100px;
}

.subscribe .holder input{
    width: 100%;
    height: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    margin-top: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    border: none;
    outline: none;
    transition-duration: 1s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.subscribe button{
    position: absolute;
    width: fit-content;
    padding: 13px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 25px;
    cursor: pointer;
    transition-duration: 0.5s;
    border: 3px solid rgb(49, 8, 56);
    background-color: rgba(255, 255, 255, 0.232);
    color: rgb(49, 8, 56);
    backdrop-filter: blur(5px);
    right: 10px;
    bottom: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.subscribe button:hover{
    border: 3px solid rgba(49, 8, 56, 0);
    background-color: rgb(49, 8, 56);
    color: rgb(255, 255, 255);
}