#header .title {
    transform: translate(-50%, -50%);
    font-size: 5rem;
    -webkit-font-smoothing: antialiased;
    background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.product-card {
    flex: 0 0 auto;
    height: 12rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #ccc;
    box-shadow: 0 .3rem .8rem rgba(255, 255, 255, .12);
    padding: .8rem;
    transition: .3s;
}
.card-header {
    width: 100%;
    color: #3C3C43;
    margin-bottom: .5rem;
}
.card-header .size {
    font-size: .75rem;
    padding: .1rem .75rem;
    line-height: 1rem;
    border-radius: 9999px;
    background: #fff;
}
.card-header svg {
    width: 16px;
    fill: #FCD53F;
}
.card-header .rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-card h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0;
}
.product-card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: auto;
}