html{
   height: 100%;
   width: 100%;
   scroll-behavior: smooth;
   color: #17252A !important;
}

.title .card{
   width: 90%;
   margin: auto;
   margin-top: 35vh;
   background-color: transparent !important;
   color: white;
}

.card{
   background-color: white;
   margin-left: 20px;
   height: fit-content;
}

.product{
   width: 100%;
   height: 100%;
   margin: auto;
}


.address, .subscribe{
   width: 80%;
   margin: auto;
   margin-top: 20px;
}

.button-green{
   background-color: #3AAFA9 !important;
   color: #FEFFFF !important;
}

.outline-green{
   background-color: #3AAFA9 !important;
   color: #FEFFFF !important;
}


/* Media Queries */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
   html{
      font-size: 80%;
   }

   .logo-img{
      width: 60vw;
   }

   .product-detail{
      flex-wrap: wrap;
   }

   .product-detail-items{
      margin: auto;
      position: relative;
      width: 100%;   
   }
 }
 
 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 600px) {
   html{
      font-size: 80%;
   }
   
   .logo-img{
      width: 40vw;
   }

   .product-detail{
      flex-wrap: wrap;
   }

   .product-detail-items{
      margin: auto;
      position: relative;
      width: 100%;   
   }
 }
 
 /* Medium devices (landscape tablets, 768px and up) */
 @media only screen and (min-width: 768px) {
   html{
      font-size: 100%;
   }
   
   .logo-img{
      width: 50vw;
   }

   .product-detail{
      flex-wrap: wrap;
   }

   .product-detail-items{
      margin: auto;
      position: relative;
      width: 100%;   
   }
 } 
 
 /* Large devices (laptops/desktops, 992px and up) */
 @media only screen and (min-width: 992px) {
   html{
      font-size: 100%;
   }
   
   .logo-img{
      width: 30vw;
   }

   .product-detail{
      display: flex;
   }

   .product-detail-items{
      width: 40vw;   
   }
 } 
 
 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1200px) {
   html{
      font-size: 100%;
   }
   
   .logo-img{
      width: 25vw;
   }

   .product-detail{
      display: flex;
   }

   .product-detail-items{
      width: 40vw;   
   }
 }