body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    user-select: none;
}

.frontpage {
    display: flex;
    background-color: white;
    height: 85vh;
    width: 100vw;
}

.product-bar {
    display: flex;
    width: 100vw;
    padding-top: 2vh;
    flex-direction: row;
    justify-content: center;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: none;
    background-color: #f1f1f1;
    border-radius: 20px;
    height: 38vh;
    width: 15vw;
    box-shadow: 2px 4px 12px rgba(75, 72, 72, 0.562);
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    margin: 0 2vw 0 0;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 2px 4px 12px rgba(75, 72, 72, 0.623);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.product-card-image {
    display: flex;
    width: 13vw;
    height: 70%;
}

.product-card-title {
    display: flex;
    width: 13vw;
    justify-content: left;
    align-items: center;
    font-weight: 500;
    padding-top: 2vh;
}

.product-card-price {
    display: flex;
    width: 13vw;
    justify-content: left;
    align-items: center;
    font-weight: 350;
}

.product-bar a {
    display: inline-block;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
}