@font-face {
    font-family: 'bebas neue';
    src: url('/fonts/BebasNeue-Regular.ttf') format('woff');
}

h1 {
    font-size: 3.3rem;
    text-align: center;
    color: #314397;
    margin-top: 50px;
}

.bund-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto; 
    text-align: justify;
    padding: 20px;
    line-height: 1.9;
}

.passion {
    text-align: center;
}




.produkt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-right: 5%;
    margin-left: 5%;
}

.produkt-boks {
    background: #9C9C9C;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.produkt-boks img {
    transition: transform 0.3s ease;
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.produkt-boks img:hover {
    transform: scale(1.15);
}
.produkt-boks h3 {
    font-size: 18px;
    color: black;
}

.produkt-boks button {
    background: #9FB6C8;
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'bebas neue';
}

.produkt-boks button:hover {
    background: #9FB6C8;
    transition: transform 0.5s ease;
    transform: scale(1.05);
    font-family: 'bebas neue';
}

.quantity-control button {
    padding: 2px 6px;
    font-size: 14px;
    margin-bottom: 5px;
}






