
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}  

.calligrafico {
  font-family: "Leckerli One", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
    background: #fff;
    font-family: "Inter", sans-serif;
    color: #585858;
    font-size: 14px;
    margin: 0;
    padding: 0;
} 
img {
    max-width: 100%;
}
/* Inizio stili applicati alla sezione header*/
.mio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}
.mio-header .menu {
    width: 20px;
    height: 20px;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}
.mio-header .menu div {
    height: 2px;
    width: 100%;
    background: #CC2525;
}
.mio-header .icona-profilo {
    max-width: 20px;
}
.mio-header .logo {
    max-width: 80px;
    box-shadow: 0 1px 4x  #cc25254b;
    border-radius: 50%;
    margin-bottom: -75px;
}

/* Inizio stili applicati alla sezione intro*/

.intro {
    padding: 70px 25px;
    background-image: url(Immagini/Torta1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
} 

.intro h1 {
    font-size: 44px;
    text-shadow: 0 4px 9px #5F0C0C ;
    margin-top: 0;

}

.pulsante {
    display: inline-block;
    padding: 10px 30px ;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 4px #006b7b63;
    background-color: #60D9F0;
    color: #fff;
    transition: all 300ms;

}
.pulsante:hover {
    background-color: rgb(0, 45, 45);
}

.pulsante-piccolo {
    display: inline-block;
    padding: 5px ;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 2px 3px #006b7b63;
    background-color: #60D9F0;
    font-size: 11px;
    color: #fff;

}

.pulsante-piccolo.rosa {
    background-color: #CC2525;
    box-shadow: 0 2px 3px #cc25255e;

}

.griglia-prodotti {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.griglia-prodotti article {
   flex-basis: calc( 50% - 4px );
   margin-bottom: 16px;
   text-align: center;

   
}
.griglia-prodotti article img {
    border-radius: 5px;
}
.griglia-prodotti article h3 {
    margin: 10px 0;
}
.griglia-prodotti .contenitore-pulsanti {
    display: flex;
    justify-content: center;

}
.griglia-prodotti .contenitore-pulsanti .pulsante-piccolo {
    margin: 2px;
}
.al-centro {
    text-align: center;
    padding-bottom: 40px;
}
.crea-ora {
    background-color: #76dddd80;
    padding: 40px 25px;
    text-align: center;
    margin-bottom: 200px;

}
.crea-ora h2 {
    font-size: 44px;
    color: #033D48;
    margin-top: 0;
    line-height: 1;
    text-shadow: 0 4px 4px #006b7b68;

}
.crea-ora img {
    margin-bottom: -200px;
    width: 100%;
}

.mio-footer {
    background-color: #FDEEF2;
    padding-bottom: 10px;
}

.mio-footer .barra-wa{
    background-color: #FFDEE6;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mio-footer .barra-wa img {
    max-width: 35px;
}

.mio-footer .barra-wa h3 {
    margin: 0;
}

.mio-footer p {
    padding: 25px;
    text-align: center;
}

/*Inizia pagina ordina */

.modulo {
   padding: 70px 25px; 
}

input, textarea {
    background: #fff2f5;
    border: solid 1px #ffb6c7;
    font-family: "Inter";
    font-size: 14px;
    padding: 3%;
    border-radius: 5px;
    margin-bottom: 12px;
    width: 94%;
}

button.pulsante {
    border: none;
    float: right;
}

textarea {
    min-height: 160px;
}
input[type=checkbox] {
    width: auto;
}

.clear {
    clear: both;
}