* {
    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;
}

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;
}

#products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#products > div {
    display: flex;
    border: 1px solid white;
    border-radius: 10px;
    padding: 5px;
    justify-content: space-between;
}

.product_left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product_left > img {
    height: 110px;
}

.product_right > button {
    background-color: transparent;
    border: none;
}

.product_right > button > img {
    height: 40px;
}

#checkout {
    margin-top: 20px;
}

#checkout_btn {
    width: 100%;
    height: 60px;
    background-color: transparent;
    border: 1px solid rgba(24, 55, 255);
    border-radius: 20px;
    color: white;
    font-size: 20px;
}