/* Custom CSS */

.centered
{
    display: grid;
    justify-self: center;
    justify-content: center;
    text-align: center;
}

.centered h1, .centered h2, .centered h3, .centered h4, .centered p, .centered a
{
    justify-self: center;
text-align: center;
}


ul li::marker {
    color: #e5b723;
}

.frame {
    background-color: white;
    padding: 10px;
    border: 8px double #e5b723;
}

.title {
    font-size: 1.3em;
    font-weight: 400;
    color: #e5b723;
}

.box2 {
    display: grid;
     box-shadow: inset 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border: 5px ridge gold;
    padding: 30px;
    justify-content: center;
    align-items: center;
    
}

.show {
    overflow: visible;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: grid;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}

.card p {
    color: #000000;
    text-align: center;
    justify-self: center;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: .75rem;
    color: #e5b723!important;
    font-size: 1.3em;
    text-align: center;
    justify-self: center;
}