@charset "utf-8";
/* CSS Document */

.standardSmol {
    font-size: 19px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#ab9159;
    text-align: center;
}
.standardNorm {
    font-size: 20px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#ab9159;
    text-align: center;
}
.standardMed {
    font-size: 35px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#ab9159;
    text-align: center;
}
.standardBig {
    font-size: 40px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#b99f67;
    text-align: center;
}
.standardBigger {
    font-size: 64px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#b99f67;
    text-align: center;
}
.standardBiggest {
    font-size: 128px;
    font-family:"Amatic SC";
    color:#ab9159;
    text-align: center;
}
.standardNormMed {
    font-size: 35px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#ab9159;
    text-align: center;
}
.fleshWall {
    font-size: 37px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color:#eded28;
    text-align: center;
    background-image: url("images/YUMfleshWall.jpg");
                /* background-repeat: no-repeat */
    height: 600px;
    position: static;
}
.warning {
  font-family: "Sixtyfour", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color:#ab9159;
    "BLED" 0,
    "SCAN" 0;
}
a {
    text-decoration: underline;
    text-decoration-color:#262feb;
}
a:hover {
    color:#7d5ce0;
}
ul {
    color: #ab9159;
    line-height: 1.5em;
}
ol {
    color: #ab9159;
    line-height: 1.5em;
}
li {
    margin-left: 20px;
}
.call-out-container {
    max-width: 1400px;
    background-color: #0c1210;
    margin: 40px auto 0 auto;
    line-height: 1.6;
    padding: 20px 50px;
    display: flex;
}
.odd-column {
    flex: 2;
     font-size: 15px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#b99f67;
}
.even-column {
    flex: 1;
     font-size: 10px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#b99f67;
}
.fixed-size-container {
    max-width:1400px;
    margin: 40px auto 0 auto;
    background-color: #FFF;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.fixed-size {
    width: 150px;
    font-size: 10px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-;
    color:#b99f67;
    height: 100px;
    background-color: #990b47;
    color: #FFF;
    line-height: 100px;
    text-align: center;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 20px;
}
table {
    border: 3px solid #b99f67;
}
td {
    border: 3px solid #b99f67;
    width: 10%;
    text-align: center;
    padding: 8px;
    font-size: 18px;
    color: #ab9159
}
th {
    color:#ab9159;
    background-color:#0c1210;
    padding: 10px;
    font-size: 22px;
}
.box-1 {
    width: 100px;
    height: 200px;
    background-color: #948d7f;
    display: inline-block;
}
@media (min-width: 800px) {
    .box-1{
        width: 150px;
    }
}
@media (min-width: 1300px) {
    .box-1{
        width: 250px;
        height: 300px;
    }
}
.basic-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
}
.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0c1210;
    font-size: 3 rem;
    color:#ab9159;
    box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem, rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 500ms;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}