* {
    font-family: sans-serif;
}

body {
    background-color: rgb(20, 20, 20);
    color: rgb(210, 210, 210);
}

header {
    display: flex;
}

header a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: rgb(62, 88, 255);
    margin: auto;
}

header a img {
    border-radius: 20px;
}

#user_account {
    display: flex;
    flex-direction: column;
    height: 40px;
    margin: auto;
    justify-content: center;
    padding: 10px;
}

#user_account a {
    color: white;
    align-items: center;
}

#user_account img {
    border-radius: 10px;
    height: 50px;
}

#top_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: right;
    max-width: 1200px;
    margin: auto;
}

#top_list a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    color: white;
}

#top_list a img {
    height: 40px;
}

main section {
    max-width: 1200px;
    min-height: 200px;
    margin-top: 20px;
    padding: 20px;
    box-shadow: rgba(24, 55, 255, 0.337) 0px 0px 100px 0px;
    border-radius: 30px;
    margin: auto;
}

#items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#items > div {
    width: 200px;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
}

#items > div > a {
    text-decoration: none;
    color: white;
}

#items > div > a > img {
    height: 200px;
}

.cart-btn {
    background-color: transparent;
    border: none;
}

.cart-btn img {
    height: 40px;
}
