body {
    background-image: url(../real/background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body::-webkit-scrollbar {
    display: none;
}

header {
    background: transparent;
    width: 100%;
    background-color: black;
}

a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    position: absolute;
    top: 30px;
    left: 20px;
    font-weight: bold;
    border: 2px dotted white;
    padding: 5px 10px;
    border-radius: 10px;
}

a:hover {
    background-color: white;
    color: black;
}

.logo {
    width: 70px;
    height: 70px;
    vertical-align: middle;
}

h2 {
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: auto;
}

.products {
    display: flex;
    /* Use flexbox for horizontal layout */
    overflow-x: auto;
    /* Allow horizontal scrolling */
    padding: 10px;
    /* Optional: add padding */
}

.products::-webkit-scrollbar {
    height: 12px;
    /* thickness for horizontal scrollbar */
}

.products::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.products::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6b6b6b, #2b2b2b);
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.products::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #8b8b8b, #3b3b3b);
}

.products {
    scrollbar-width: thin;
    /* auto | thin | none */
    scrollbar-color: #6b6b6b rgba(255, 255, 255, 0.06);
    /* thumb track */
}

.items {
    text-align: center;
    /* Center text in each item */
    margin: 0 10px;
    /* Space between items */
}

.items img {
    width: 100px;
    /* Set image width */
    height: 150px;
    /* Set image height */
    background-color: white;
    border: 3px solid black;
    border-radius: 100px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.capitions {
    text-align: center;
    background-color: white;
    width: 100px;
    padding: 10px;
    margin-top: 5px;
    border: 3px solid black;
    border-radius: 17px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.capitions:hover {
    transform: scale(1.05);
    background-color: rgb(240, 240, 240);
}

.capitions:active {
    transform: scale(0.95);
    background-color: rgb(220, 220, 220);
}

.product-link {
    text-decoration: none;
    color: inherit;
}

span {
    display: block;
    /* Ensure span is on a new line */
    margin-top: 5px;
    /* Space above the span */
    font-weight: bold;
}