html {
    background-color: black;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: rgb(65, 57, 61);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Majesti-Banner-Light";
    font-size: 25px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
}

@font-face{
    font-family: "Majesti-Banner-Heavy";
    src: url('Majesti-Banner-Heavy.otf') format('opentype');
}

@font-face{
    font-family: "Majesti-Banner-Light";
    src: url('Majesti-Banner-Light.otf') format('opentype');
}

@font-face{
    font-family: "Majesti-Banner-Book";
    src: url('Majesti-Banner-Book.otf') format('opentype');
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-family: Majesti-Banner-Heavy;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: rgb(215, 228, 194);
}

/* styling for the custom navigation bar */

.links {
    background-color: rgb(190, 30, 45);
    color: rgb(215, 228, 194);
    list-style: none;
    text-align: center;
    padding: 5px;
    font-size: 30px;
    margin-bottom: auto;
    border-style: solid;
    border-color: black;
}

.links li{
    display: inline-block;
    padding: 0px 2px;
}

.links >li >a:hover {
    color: black;
}

/* styling for the footer contact info */

.contact-info {
    color: rgb(215, 228, 194);
    background-color: rgb(138, 140, 143);
    list-style: none;
    text-align: center;
    margin-bottom: auto;
    border-style: inset;
    border-color: black;
}

.contact-info li{
    display: inline-block;
    padding: 0px 2px;
}

/* styling for the special deals page text */

.specialdeal {
    background-color: rgb(190, 30, 45);
    color: rgb(215, 228, 194);
    list-style: none;
    text-align: center;
    padding: 5px;
    font-size: 50px;
    margin-bottom: auto;
    border-style: solid;
    border-color: black;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 100%;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}
section {
    
}

#feature {
    background color: rgb(65, 57, 61);
}

p {
    font-family: Majesti-Banner-Light;
    color: rgb(138, 140, 143)
    background-color: rgb(65, 57, 61);
}
