* {
        body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    max-width: 500px;
            margin: 0 auto;
            background-color: #000;background-image:url('https://i.pinimg.com/originals/58/68/36/5868367d2a971c9045eefe3afde4165a.jpg');
    background-size: fill;
}

.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

header .logo {
    width: 200px;
    vertical-align: middle;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header nav {
    margin-top: 10px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

header nav a:hover {
    text-decoration: underline;
}

.item {
    padding: 0px 0px;
    border-radius: 15px;
    margin: 100px auto;
    max-width: 600px;
}

.item-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item-details img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.item-info {
    max-width: 500px;
}

.item-info h2 {
    font-size: 28px;
    margin: 0 0 20px;
}

.item-info .description {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.item-info .price {
    font-size: 24px;
    color: #ff5722;
    margin: 20px 40px;
}

.item-info button {
    background-color: #ff5722;
    color: #fff;
    border: none;
    padding: 30px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
}

.item-info button:hover {
    background-color: #e64a19;
}

footer {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}
.gif-container {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1; 
    }