body {
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: #001e40;
    color: white;
    font-family: 'Palatino', sans-serif;
    align-content: center;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    max-width: initial;

}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

.jumbotron {
    background-color: #27323d;
    box-shadow: rgb(128, 128, 128) 0px 0px 20px;
}

.section-title {
    display: flex;
    flex-direction: row;
    text-align: left;
}

p {
    color: white;
}

a {
    color: white;
}

.card-list {
    display: flex;
    height: 545px;
    padding: 3rem;
    overflow-x: scroll;
}

.card-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.card-list::-webkit-scrollbar-thumb {
    background: #201c29;
    border-radius: 10px;
    box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25);
}

.card-list::-webkit-scrollbar-track {
    background: white;
    border-radius: 15px;
}

.card {
    height: 475px;
    width: 400px;
    min-width: 300px;
    padding: 1.5rem;
    border-radius: 15px;
    background: #27323d;
    box-shadow: -1rem 0 3rem #000;
    display: flex;
    flex-direction: column;
    transition: .2s;
    margin: 0;
    scroll-snap-align: start;
    clear: both;
    position: relative;
}

.card:focus-within ~ .card, .card:hover ~ .card {
    transform: translateX(130px);
}

.card:hover {
    transform: translateY(-1rem);
}

.card:not(:first-child) {
    margin-left: -130px;
}

.card-header {
    margin-bottom: auto;
}

.card-header p {
    font-size: 14px;
    margin: 0 0 1rem;
    color: #7a7a8c;
}

.card-header h2 {
    font-size: 20px;
    margin: .25rem 0 auto;
    text-decoration: none;
    color: inherit;
    border: 0;
    display: inline-block;
    cursor: pointer;
}

.card-header h2:hover {
    background: linear-gradient(90deg,#ff8a00,#e52e71);
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.card-button-list {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;

}

.card-button {
    text-align: center;
    border-radius: 15px;
    padding: 0px 12px;
}

footer {
    position: absolute;
    bottom: 10px;
}

/*Pagination*/
/*.page-no .pagination {
    height: 10px;
}

    .page-no .pagination ul {
        list-style-type: none;
        display: flex;
    }

        .page-no .pagination ul .previous,
        .page-no .pagination ul .previous active,
        .page-no .pagination ul .previous a {
            padding: 10px;
        }*/
