:root {
    --colorPrimary: #000;
    --colorSecondary: #fff;
    --colorTertiary: #fdd324;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter';
    color: var(--colorSecondary);
}
html {
    font-size: 62.5%;
}
body{
    background-color: var(--colorPrimary);
    width: 100%;
    display: flex;
    flex-direction: column;
}
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 4vmax;
    padding: 5vmax;
}
main h1 {
    font-size: max(5vh, 4vw);
    margin: 0 auto;
    text-align: center;
}
main .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, min(250px, 85vw));
    gap: 2.5vmax;
    align-items: center;
    justify-content: center;
}
.product-card {
    min-height: 60vh;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.5vmax;
    background-color: rgba(9, 9, 9);
    border-radius: 20px;
    padding: max(2vh, 1.5vw);
}
.product-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0 0;
}
.product-desc {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5vmax;
}
.product-desc h3 {
    font-size: max(2.2vh, 1.8vw);
    font-weight: 600;
}
.product-desc span {
    font-size: max(1.8vh, 1.5vw);
    font-weight: 700;
    color: rgb(150, 150, 150);
}