* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    font-size: 18px;
    color: #f1c40f;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #f1c40f;
    color: #000;
    border-radius: 5px;
}

footer {
    background-color: #000;
    color: #f1c40f;
    text-align: center;
    padding: 15px;

    width: 100%;
    bottom: 0;
}

main {
    padding: 50px 20px;
}

.store {
    text-align: center;
    margin-bottom: 50px;
}

.store h2 {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 40px;
}

.album-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.album-item {
    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.album-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.album-item p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.album-item .price {
    font-size: 1.2rem;
    color: #f1c40f;
    margin-bottom: 15px;
}

.album-item .buy-btn {
    background-color: #f1c40f;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.album-item .buy-btn:hover {
    background-color: #e67e22;
}

@media (max-width: 768px) {
    .store h2 {
        font-size: 2rem;
    }

    .album-list {
        grid-template-columns: 1fr 1fr;
    }

    .album-item {
        width: 90%;
    }
}
li{
    list-style-type: none;
}