@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');
/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: rgb(87, 198, 107); 
  --second-color: #002c0c;
}
body {
    background-image: radial-gradient(circle, #ffffff, #e8e8e8, #d2d2d2, #bcbcbc, #a7a7a7);
    background-size: 40px 40px;
    background-image:
      linear-gradient(to right, grey 1px, transparent 1px),
      linear-gradient(to bottom, grey 1px, transparent 1px);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 600px) {
    p {
      font-size: small;
    }
    h1{
        font-size: large;
    }
    h2{
        font-size: medium;
    }
}
.column-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center horizontally */
}
.product-box{
    background-color: white;
    border: 1px solid var(--primary-color); /* Use CSS variable */
    border-radius: 10px;
    padding: 20px; /* Use shorthand property */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; 
    width: 40%;
    margin-top: 50px;
    margin-left: 10px;
    cursor:pointer;
}
.product-box:hover {
    border: 2px solid var(--primary-color); /* Use CSS variable */
}

.product-box:active {
    box-shadow: none;
    transform: translateY(5px);
}
.top-icon{
    margin-top: 10px;
    margin-left: 10px;
    width: 400px;
}
@media only screen and (max-width: 600px) {
    .top-icon {
        width: 300px;
    }
}

.nav{
    width: 100%;
    border-color: black;
    background-color: white;
    display: flex; /* Use flexbox to arrange elements horizontally */
    align-items: center; /* Vertically center align items */
    padding-bottom: 10px;
    height: 100px;
}
a{
    margin-left: 40px;
    color: var(--primary-color);
}
.product-img{
    width: 50%;
}
.product-pg-img{
    margin-top: 20px;
    background-color: white;
    width: 200px;
    height: 200px;
    border-radius: 20px;
}
.pro-dis{
    margin-top: 40px;
    width: 400px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}
.buy-but{
    margin-top: 20px;
}
.carousel-container {
    display: flex;
    overflow: hidden;

}

.carousel-slide {
    min-width: 100%;
}

img {
    width: 100%;
    height: auto;
}

button {
    margin: 10px;
    border-width: 0;
    background-color: white;
}
stripe-buy-button {
    width: 20%;
}
.bottom{
    margin-left: 10px;
    position: absolute;
    bottom: 0;
}
