:root{
    --backcolor: rgba(242,242,244,255);
    --grey: grey;
}

@media (max-width: 1200px) { 
    #navlsititem{
        display: none;
    }
    #schoolmacimg{
        width: 80%;
    }
}

*{
    box-sizing: border-box;
    margin: 0 auto;
}

.main-nav{
    background-color: var(--backcolor);
    text-align: center;
    padding: 5px;
}

.nav-list{
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 35px;
}

#navsititem:hover{
    -webkit-box-shadow: 0px 2px 30px -4px rgba(15,14,15,1);
    -moz-box-shadow: 0px 2px 30px -4px rgba(15,14,15,1);
    box-shadow: 0px 2px 30px -4px rgba(15,14,15,1);
}

.nav-list a{
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.offer-nav{
    text-align: center;
    font-size: smaller;
    padding: 5px;
    font-weight: 500;
}

#no-underline-link{
    text-decoration: none;
}

.back-to-school{
    background: linear-gradient(-45deg, #5e7085, #ebffff, var(--backcolor));
	background-size: 400% 400%;
	animation: gradient 4s ease infinite;
    width: 100%;
    text-align: center;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.section1-image{
    mix-blend-mode: multiply;
}

.main-text{
    padding-top: 50px;
    font-size: 50px;
    font-weight: 700;
}

.sub-main-text{
    font-size: 20px;
    font-weight: 500;
}

.link{
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.products-carasol{
    margin-top: 20px;
    background-color: var(--backcolor);
    width: 100%;
    height: 600px;
    text-align: center;
}

.section-head{
    font-size: 3rem;
    padding: 50px;
}

.carasoul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.product-card{
    width: 300px;
    height: 300px;
    background-color: white;
    padding-top: 50px;
    border-radius: 15px;
}

.product-name{
    padding: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}