

body {
  font-family: sans-serif;
  
}
.header {
  background-color: #f3f3f4;
  margin-top: -24px;
  padding-top: 50px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 30px;
}

.istruzioni {
  display: flex;
flex-direction: column;
}

.disclaimer {
  margin-left: auto;
  margin-right: auto;
  background-color: #f3f3f4;
  border: 1px solid #e5e7eb;
  width: 60%;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 5px 5px 5px #e5e7eb;
  
}

svg {
  margin-right: 8px;
}

li {
  margin-left: 42px;
  padding-left: 8px;
}

.underlined {
  text-decoration: underline;
}

.gifts {
  width: 60%;
  padding: 24px;
  margin-left:auto;
  margin-right:auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 30px;
}


.gift {
  border: 1px solid #e5e7eb;
  width: 30%;
  border-radius:15px;
   box-shadow: 5px 5px 5px #e5e7eb;

}

.gift img {
  width: 100%;
  border-radius: 15px 15px 0px 0px;
}

.gift h3 {
  font-weight: 600;
  line-height: 1.75rem;
  font-family: sans-serif;
  margin-bottom: 8px;
  font-size: 12pt;
}

.gift_body {
  width: 80%;
  padding-left: 24px;
  
}

.marche {
  display: flex;
  justify-content: space-evenly;
  margin-top: 8px;
  margin-bottom: 8px;
  gap: 8px;
}

.marca {
  font-size: 8pt;
  border: 1px solid lightgray;
  display: inline-flex;
    border-radius: 9999px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-family: sans-serif;
  
}

button {
  background-color: #0f172a;
  color: white;
  font-family: ui-sans-serif;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
  padding-left: 30px;
  padding-right: 20px;
}

.button_container {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  margin-top: 16px;
}

.button_icon {
  position: absolute;
  z-index: 999;
  color: white;
  margin-left: 75px;
  
  display: flex;
}

@media (max-width: 1600px) {
  
  body {
    
  }
  
  .gift {
    width: 100%;
  }
  
  .gift_body {
    width: 90%;
  }
  
  .button_container {
    border: 1px solid red;
    
    margin-left: auto;
    margin-right: auto;
  }
  
  .button_icon {
    margin-left: 200px;
  }
  
  .marca {
    font-size: 12pt;
    
  }
  
  .gift_body h3 {
    font-size: 18pt;
  }
 
}


.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(100,100,100, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.overlay_content {
  background-color: white;
  padding-left: 150px;
  padding-right: 150px;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 15px;
}