@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin&display=swap");
html, body {
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: #b6b6b6;
}

::-webkit-scrollbar-track {
  background: rgba(216, 216, 216, 0.933);
}

:root {
  --main-color: #ffd621;
  --neutral-color: #fbdb4e;
  --accent-color: #c7c7c7;
}

.accent {
  background-color: var(--accent-color) !important;
}

h1 {
  text-transform: uppercase;
  font-family: 'playfair display';
  font-weight: 800;
  margin-bottom: -5px;
}

p {
  font-family: 'libre franklin';
}

h3 {
  font-family: 'playfair display';
}

a {
  text-decoration: none;
  color: inherit;
}

.button {
  border: none;
  font-family: 'playfair display';
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  background-color: var(--main-color);
  padding: 5px;
}

.header {
  position: relative;
  background-image: url("https://drive.google.com/uc?export=view&id=1m76UgjxBplRA0Fi_tkYu7AJA_mfWgSS6");
  background-position: center;
  background-size: cover;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header div {
  line-height: 100%;
  color: white;
  padding-left: 50%;
  z-index: 101;
}

.header .black {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.grid-products {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}

.grid-products div {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
}

.grid-products div h3 {
  background-color: var(--neutral-color);
  display: block;
  padding: 10px;
  margin: 0;
}

.grid-products div::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.grid-products .sold::after {
  content: 'Venduto';
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(245, 89, 81, 0.5);
  padding: 10px;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'libre franklin';
}

.content {
  padding: 100px 200px 200px 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}

.content .grid-item {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.content p {
  color: #525252;
}

.content .images::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.images {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.images span {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.nav {
  text-align: center;
  height: 70px;
  background-color: var(--neutral-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  z-index: 103;
}

.nav img {
  max-width: 250px;
  margin: auto;
}

.contact {
  padding: 70px;
  max-width: 800px;
  margin: auto;
}

.contact input {
  background-color: #eeeeee;
  color: #393e46;
  border: 1px white solid;
  width: 100%;
  font-size: 20px;
  padding: 5px;
  font-family: "Libre Franklin";
}

.contact textarea {
  background-color: #eeeeee;
  color: #393e46;
  border: 1px white solid;
  width: 100%;
  height: 200px;
  font-size: 20px;
  padding: 5px;
  font-family: "Libre Franklin";
}

@media only screen and (max-width: 1000px) {
  .header div {
    line-height: normal;
    padding-left: 0;
    padding: 50px;
  }
  .grid-products {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .content {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    padding: 100px 50px 50px 50px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-products {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}
/*# sourceMappingURL=styles.css.map */