* {
    padding: 0%;
    margin: 0%;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*::-webkit-scrollbar {
    display: none;
}
html, body {
    overflow-x: hidden;
}

#container {
    width: 80%;
    margin: 0 auto;
    padding: 50px 100px 100px 100px;
    text-align: center;
}

h1 {
    color: #333;
    margin: 20px;
    font-weight: 1000;
}

.accessories-grid {
    display: flex;
    justify-content: space-around;
    margin: 30px;
}

.accessory-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    width: 250px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accessory-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.accessory-item h2 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.accessory-item .description {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.accessory-item .price {
    font-size: 16px;
    color: rgba(0, 0, 255, 0.726);
    font-weight: bold;
}

.accessory-item:hover {
    transform: translateY(-5px);
}

@media  screen and (max-width:480px) {
    #container {
        width: 100%;
        margin: 0%;
        padding: 0%;
        padding-bottom: 50px;
        text-align: center;
    }
    .accessories-grid{
        display: block;
        margin: auto;
    }
    .accessory-item{
        margin: auto;
        margin-bottom: 30px;
    }
}