* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 0 20px 0 20px;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    justify-content: center;
    height: 100vh;
}

section {
    margin: 50px 0 100px 0;
    max-width: 1400px;
}

.container {
    max-width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 2em;
}

@media (max-width: 1200px) {
    .container {
        flex-wrap: wrap;
    }
}

/*.box {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 20px 5px 20px 5px;
    background: rgba(32, 32, 32, 1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(32, 32, 32, 0.53);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .box {
        max-width: 100%;
    }
}

.box:hover {
    transform: scale(1.02);
}

.box img {
    width: 80px;
    border-radius: 50%;
}*/

.products-overlay {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 2em;
    justify-content: center;
}

.product {
    max-width: 300px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    background: rgba(32, 32, 32, 1);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(32, 32, 32, 0.53);
}

.product img {
    width: 300px;
    height: 300px;
    border-radius: 8px 8px 0 0;
}

.p-desc {
    display: flex;
    flex-direction: column;
    height: 80px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

