html,
body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    padding-bottom: 75px;
    background-image: url(../img/BackScreen.svg);
    padding-top: 30px;
    flex-wrap: wrap;
    background-size: cover;      /* Scale image to cover the entire container */
    background-position: center; /* Center the image within the container */
    background-repeat: no-repeat;/* Do not repeat the image */
    background-attachment: fixed;/* Keep the background fixed during scroll */
    background-color: #f0f0f0; 
}

main {
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.top-logo {
    height: 120px;
    margin-bottom: 20px;
}

.top-logo-logged-out {
    height: 180px;
    margin-bottom: 20px;
}

.btn-discord {
    background-color: #7289DA;
    width: 250px;
    color: whitesmoke;
}
.btn-discord:hover {
    background-color: #6578BD;
    color: whitesmoke;
}

/** Card **/
.user-card{
    width: 300px;
    background: #18191c;
    border-radius: 8px;
    box-shadow: 0px 2px 15px 4px #ccc;
}

    .user-card .header-banner{
        min-height: 60px;
        background: pink;
        border-radius: 5px 5px 0px 0px;
    }
    
    
    .user-card .header-top{
        display: block;
        padding: 16px 16px 16px;
        overflow: hidden;
        position: relative;
    }
    .user-card .header-avatar img{
        border-radius: 50%;
        background: #18191c;
        padding: 7px;
        z-index: 1;
        
    }
    .user-card .header-text{
        font-family: Arial;
        font-size: 20px;
        font-weight: 800;

        margin-right: -6;
    }
        .user-card .header-text .header-username{
            color: #fff;
            margin-right: -6;
        }
        .user-card .header-text .header-discrim{
            color: #b9bbbe;
        }

    .user-card .header-badges{
        position: absolute;
        top: 16px;
        right: 16px;
        max-width: 180px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .user-card .header-badges img{
        margin-right: 2px;
    }

.user-card .body-wrapper{
    padding: 0 16px 14px;
}
    .user-card .body-wrapper .body .divider{
        display: block;
        border-top: 1px solid #33353b;
        margin-bottom: 14px;
    }


.product-card-list {
    display: flex;
}

.product-card {
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px #ccc;
    margin: 10px;
    padding: 10px;
    max-width: 300px;
    border-radius: 5px;
    background-color: #18191c;
    color: white;
}

.product-image {
    width: 100%;
}

.product-info {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.product-name {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.product-description {
    color: #666;
    text-align: center;
}

.purchase-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
    transition-duration: 0.4s;
    border-radius: 5px;
}

.purchase-btn:hover {
    background-color: #45a049;
}

.steam-id-input {
    display: flex;
    flex-direction: column;
    width: 250px;
    margin: 10px;

    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px #ccc;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #18191c;
    color: white;
}

.steam-id-input label {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.steam-id-input input[type="text"] {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.steam-id-input input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition-duration: 0.4s;
}

.steam-id-input input[type="submit"]:hover {
    background-color: #45a049;
}


.subscription-info {
    width: 205px;
    height: 215px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px #ccc;
    margin-bottom: 10px;
    padding: 10px;
    max-width: 300px;
    border-radius: 5px;
    background-color: #18191c;
    color: white;
}

.subscription-info .product-description {
    margin: 0;
}

.subscription-info img {
    width: 180px;
}

.price {
    font-size: 30px;
    font-weight: 600;
}

.text-italic {
    font-style: italic;
}

.payment-error
{
    margin-top: 0px;
    margin-bottom: 23px;
}

.width300 img
{
    width: 300px;
}

.subStatus
{
    display: flex;
    width: 450;
    justify-content: space-around;
}

.width200 img
{
    width: 200px;
}