body {
  background: #00d2ff;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #928DAB, #00d2ff);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #928DAB, #00d2ff);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.pin-code{ 
  padding: 0; 
  margin: 0 auto; 
  display: flex;
  justify-content:center;
  
} 
 
.pin-code input { 
  border: none; 
  text-align: center; 
  width: 48px;
  height:48px;
  font-size: 36px; 
  background-color: #F3F3F3;
  margin-right:5px;
  border-radius:10px;
} 



.pin-code input:focus { 
  border: 1px solid #573D8B;
  outline:none;
} 


.pin-code input::-webkit-outer-spin-button,
.pin-code input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
a{
  text-decoration: none !important;
  color: #363636;
}
.title{
  font-family: 'Amatic SC', cursive;
  color: white;
}
.listContainer{
  height: 100vh;
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
}
.containerItemGift {
  margin: 10px 0px;
  background-color: white;
  width: 400px;
  /* height: 100px; */
  border-radius: 20px;
  padding: 10px;
  margin-left: 30px;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.containerItemGift:hover {
  opacity: 0.8
}

.containerIcon {
  border-radius: 20px;
  margin-left: -40px;
  width: 100px;
  height: 100px;
  overflow: hidden
}

.containerIcon img {
  width: 100%;
  height: 100%
}

.containerDescription h1 {
  font-size: 20px;
}

.containerDescription p {
  font-size: 14px;
}

.containerDescription span {
  display: grid;
  text-align: end;
  color: #aaa;
  font-weight: bold;
}

.containerDescription {
  padding: 20px;
}
#timer{
  font-weight: bold;
}

@media (max-width: 500px) {
  .containerItemGift {
    margin-left: 10px;
    width: 90%;
  }

  .containerDescription {
    padding: 0px;
    padding-left: 20px;
  }

  .containerDescription h1 {
    font-size: 16px;
  }

  .containerDescription p {
    font-size: 12px;
  }

  .containerDescription span {
    font-size: 10px;
  }

  .containerIcon {
    margin-left: -20px;
    height: 80px;
    width: 80px;
  }
}


