/*Regole generali*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #f6f6fe;
    font-family: "Figtree", sans-serif;
    color: #2e2e3a;
}

/*Titoli*/
h1{ 
    font-size: 32px;
    color: #2f6f5e;
}

h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 48px;
    color: #2e2e3a;
}

h3{
    font-size: 18px;
    color: #2e2e3a;
}

h6{
    font-size: 16px;
    padding: 0 0 12px;
}


/*link*/
a{
    text-decoration: none;
    color: #6b6fa8;;
}


/*Pulsanti*/
.discover-btn{ /*scopri di più*/
    font-size: 14px;
    padding: 3px 6px;
    background-color: transparent;
    border: 1px solid #c9c9d6;
    border-radius: 8px;
    color: #6b6fa8; 
    font-family: "Figtree", sans-serif;
}

.buy-btn{ /*acquista da ...*/
    padding: 3px 6px;
    background-color: transparent;
    border: 1px solid #c9c9d6;
    border-radius: 8px;
    color: #6b6fa8;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
}

.amazon{
    color: #d78a0e;
    font-weight: 500;
}

.decathlon{
    color: #1919bc;
    font-weight: 500;
}

.mondadori{
    color: #af2a09;
    font-weight: 500;
}

/*per tutti i caroselli*/
.carousel-container{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /*scorrimento laterale*/
}

.carousel-container::-webkit-scrollbar{ /*rimozione scroll-bar*/
  display: none;
}
