body {
font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}
a:link {
    text-decoration: none;
}
h1, h2 {
    font-size: 2em;
}

h3, h4 {
    font-size: 1.6em;
}

p {
    font-size: 1em;
}

.flex-container {
    display: flex;
}
.space-between {
    justify-content: space-between;
}

.header {
    padding: 40px 80px;
}
.header .colonna-dx {
    align-items: flex-end;
}

.header .colonna-sx {
    align-items: center;
}
.header .logo {
    margin-left: 80px;
}

.header input {
    border: none;
    border-bottom: solid 1px #000;
    padding: 20px;
    font-size: 1.6em;
    margin-right: 80px;
    transition: all 300ms;
}
.header input:hover, .header input:focus {
    border-bottom: solid 3px #000;
}
.header .carrello {
    max-width: 60px;
}

.pulsante-menu {
    width: 44px;
    height: 30px;
    display: block;
}

.pulsante-menu div {
    display: block;
    width: 100%;
    height: 4px;
    background: #000;
    margin-bottom: 15px;
}

.contenitore-principale {
    max-width: 1000px;
    margin: 0 auto;
}

.copertina {
    position: relative;
    margin-top: 40px;
}

.copertina .cuore {
    position: absolute;
    top: -3px;
    right: -57px;
    max-width: 60px;
}

.angoli-arrotondati {
    border-radius: 30px;
}

.pulsante {
    background: #000;
    color: #fff;
    font-size: 2em;
    padding: 20px 40px;
    transition: all 300ms;
}
.pulsante:hover {
    background: rgb(241, 149, 203);
    color: #000;
}

.copertina .pulsante {
    display: block;
    margin: 40px auto;
    max-width: 400px;
    text-align: center;
}

.griglia-2-colonne {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
}

.griglia-2-colonne .item {
    position: relative;
    margin-bottom: 60px;
}
.griglia-2-colonne .item .cuore {
    position: absolute;
    top: -3px;
    right: -7px;
    max-width: 30px;

}

.footer {
    padding-bottom: 80px;
}

.nav-footer {
    justify-content: space-between;
}

.nav-footer a {
    background: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 15px;
    transition: all 300ms;
}

.nav-footer a:hover {
    background: rgb(241, 149, 203);
    color: #000;
}