*{
    margin: 0;
    padding: 0;
    /* color: white; */
    font-family: "Poppins", sans-serif;
}
body{
    background: url(images/modern-works-art-aesthetic-pastel-geometric-textured-blob-background-cretive-design-poster-card-wallpaper-banner-website_57613-8.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.glassmorphism{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: min(5rem, 8%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
    margin-bottom: 4rem;
}
header,main,footer{
    width: min(900px,90vw);
    margin: auto;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
nav{
    display: flex;
    gap: 1rem;
}
nav a{
    text-decoration: none;
    color: #222;
    font-weight: 700;
}
.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.title{
    font-size: 4rem;
    font-weight: 9000;
}
.tagLine{
    font-size: 2rem;
}
button{
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
}
button a{
    text-decoration: none;
    color: #000;
    font-size: 1rem;
}
.products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.product{
    border: 1px solid black;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
}
.product img{
    width: 100%;
    object-fit: cover;
    flex-grow: 1;
    min-height: 0;
    aspect-ratio: 3/4;
}
.product_details{
    margin-top: auto;
}
.cta a{
    display: block;
    background-color: #222;
    color: white;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 0.5rem;
}
section{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
h4{
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
}
form{
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}
input{
    padding: 0.5rem;
    font-size: 1rem;
}
footer{
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
}
h2{
    font-weight: 900;
}