html {
	height: 100%;
    font-family: "Crimson Text", serif;
}

body {
    --overlay: rgb(225 225 225 / 95%);
    background:
      linear-gradient(var(--overlay),var(--overlay)), 
      url('backgrounds/fastcards-bkgd.png') center/cover no-repeat;      
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 10%;
    box-sizing: border-box;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

a:link, a:visited, a:active {
    color: inherit;
}


#card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
    width: 90%;
    max-width: 750px;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.12);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: white;
}

#card-stacked-contents {
    padding-bottom: 20px;
}

#card-title {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
}

.card-text-section {
    line-height: 25px;
}

.card-ul {
    list-style-type: disclosure-closed;
    padding-inline-start: 25px;
}

.card-li {
    margin: 0 0 7px 0;
}

.card-li::marker {
    font-size: 0.8em;
}

.footnote-text {
    font-size: 1.0em;
    color: gray;
    font-style: italic;
}

#checkout-button-wrapper {
    height: 40px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;               
    bottom: 18px;             
    z-index: 1; 
    background-color: black;
    color: white;
    cursor: pointer;
    border-radius: 10px;
}

#checkout-button-wrapper:hover {
    background-color: #333;
}

#checkout-button-link {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media only screen and (max-width: 750px) {

    body {
        padding-top: 7%;
    }

    .card-text-section {
        line-height: 22px;
    }

    #card-wrapper {
        width: 92%;
        padding: 30px 30px 40px 30px;
    }

}