body {
    color: white;
    background: #242424;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container{
    flex-grow:1;
}

.mb-3 {
    margin-bottom: 0 !important;
}
header {
    background: #161616;
    font-size: 20px;
    margin-bottom: 0;
}

header .navbar-brand {
    background-image: url('../images/Goblin_Club_Attack.gif');
    background-size: cover;
    padding: 40px;
    image-rendering:pixelated;
}

header .navbar-nav{
    margin-left: auto;
    text-transform: uppercase;
}

header .title {
    padding-top: 2px;
    padding-right: 30px;
    color: #3b64d4;
    text-transform: uppercase

}

#manage {
    color: white !important;
    font-size: 20px
}

#logout {
    color: white !important;
    font-size: 20px
}
#login {
    color: white !important;
    font-size: 20px
}

#register {
    color: white !important;
    font-size: 20px
}

header .nav-item {
    margin-right: 20px;
    margin-left: 20px;
}

footer {
    position: relative;
    background: #161616;
    bottom: 0;
    padding: 0.5em 0;
    width: 100%;
}
    footer img {
        height: 50px;
    }
/*This "welcome" css is refering to the title of each page*/
.welcome {
    font-size: 6vh;
    text-align: center;
    color: #3b64d4;
    margin: 50px;
}

.index {
    display:block;
    margin:auto;
}

.index h1 {
    color: #3b64d4;
    text-align: center;
    margin:50px auto;
}

.index p {
    font-size: 20px;
    text-align: center;
    margin: 50px auto;
}

.index img {
    margin: auto;
    display: block;
    margin: 50px auto;
    max-width:100%;
}

/*--------------------This code is for the contact stuff---------------------------*/

.main-heading {
    color: #3b64d4;
    text-align:center;
    margin-top:50px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button-container img {
    max-width: 100%;
    background: #161616;
}

.button-container .button-entry {
    float: left;
    max-width: 100%;
    margin: 30px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: relative;
    background: #161616;
}

.button-container .contact-button {
    width: 400px;
}

.button-container .faq-button {
    width: 400px;
}

.button-container .entry-title {
    position: absolute;
    text-align: center;
    bottom: 0px;
    width: 100%;
    padding: 10px 0;
    /*pointer event stops the mouse being unable to click the "faq" and "contact me".*/
    pointer-events: none;
    font-size: 50px;
    text-transform: uppercase;
    background-color: rgba(0,0,0,0.5);
    text-shadow: black 1px 1px 5px;
}

#contact-form {
    padding: 20px 20px 20px 40px;
    margin: 10px 30px;
    background-color: #161616;
    border-radius: 20px;
    font-size: 25px;
    text-align: left;
}

#faq {
    padding: 25px 50px 25px 50px;
    margin: 50px 100px;
    background-color: #161616;
    border-radius: 20px;
    font-size: 25px;
    text-align: center;
}

.contact-message {
    text-align: center;
    font-size: 30px;
    margin-bottom:20px;
    color: #3b64d4;
}

.faq-text h2 {
    font-size:70px;
    margin: 30px;
    color: #3b64d4;
}

.faq-text h3 {
    font-size: 35px;
    margin: 30px;
}

.faq-text p {
    margin:20px;
    font-size:20px;
}

.name {
    padding: 0 0 10px;
}

.query {
    padding: 10px 0 10px;
}

.subject {
    padding: 10px 0 10px;
}

.submit {
    padding: 5px 0;
}

input[type=text], select, textarea {
    padding: 3px;
    box-sizing: border-box;
    resize: vertical; /* if they enter too much text it will resize. */
    font-size: 25px;
    width: 100%;
}

input[type=submit] {
    background-color: #3b64d4;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.hidden {
    display: none;
}
/*--------------------This code is for the menu stuff---------------------------*/

.menu {
    max-width: 100%;
    margin: 0 200px, 0, 200px;
}

.menu-container {
  margin-bottom: 50px;
  overflow:auto;
}

.menu-category {
    float: left;
    max-width: 100%;
    position: relative;
    margin-top: 10px;
    width: 100%;
}

.menu-category .banner{
    max-width: 100%;
    position: relative;
    margin-top: 10px;
    background-size: cover;
    width: 100%;
    background-position: 50% 35%;
    padding-bottom: 23%;
    transition: all 0.5s ease;
    cursor: pointer;
}

    .menu-category .banner .entry-title {
        position: absolute;
        text-align: center;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        /*pointer event stops the mouse being unable to click the "faq" and "contact me".*/
        pointer-events: none;
        font-size: min(7dvw,70px);
        
        text-transform: uppercase;
        -webkit-text-stroke-width: min(0.3vw, 2px);
        -webkit-text-stroke-color: black;
        text-shadow: black 1px 1px 5px;
    }

.menu-category.expanded .banner {
    padding-bottom:70%;
}

.menu-category .menu {
    display: none;
}

.menu-category.expanded .menu {
    display: block;
}

.menu-container .entry-title {
    position: absolute;
    text-align: center;
    width: 100%;
    /*pointer event stops the mouse being unable to click the "faq" and "contact me".*/
    pointer-events: none;
    font-size: min(7dvw,50px);
    text-transform: uppercase;
    text-shadow: black 5px 5px 5px;
}

.menu .entry video {
    max-width: 100%;
    background: #353535;
}

.menu .entry img {
    max-width: 100%;
    background: #353535;
}

.menu .entry {
    float: left;
    max-width: 100%;
    margin: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: relative;
    image-rendering: pixelated;
    background: #161616;
}

.menu .entry p {
    padding: 10px;
}

.menu .entry-icon {
    width: 400px;
    width: 48.4%;
    image-rendering: pixelated
}

.menu .entry-title {
    position: absolute;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.5);
}

/*this changes the bootstraps default width settings so i can resize the text properly as the page shrinks*/
@media only screen and (max-width:1320px) {
    .menu-container .entry-title {
        font-size: 3vw;
    }
}

.menu-category.pizza .banner {
    background-image: url('../images/Forest.png');
    image-rendering: pixelated;
}

.menu-category.sides .banner {
    background-image: url('../images/pacman.png');
}

.menu-category.dessert .banner {
    /* image sourced from https://www.pexels.com/photo/wimbledon-tennis-stadium-in-england-26623177/ */
    background-image: url('../images/wimbledon.jpg');
}

.menu-category.drinks .banner {
    /* image sourced from https://www.pexels.com/photo/river-between-green-leafed-tree-1766838/*/
    background-image: url('../images/rivers.jpg');
}

.menu-category.dips .banner {
    /* image sourced from https://www.pexels.com/photo/bitcoins-and-u-s-dollar-bills-730547/ a*/
    background-image: url('../images/money.jpg');
}

/*--------------------This code is for the menu stuff---------------------------*/

.about {
   
}

/*--------------------This code is for the cats stuff---------------------------*/

.cats {
    overflow:auto;
    margin-bottom:50px;
}

.cats .cat-entry {
    display: flex;
    justify-content:center;
    margin-bottom:20px;
    align-items: center;
}

.cat-entry img {
    width: 100%;
    border-radius: 20%;
}

.cat-picture {
    width: 50%;
    position: relative;
}

.cat-entry .entry-title {
    position: absolute;
    text-align: center;
    bottom: 0px;
    width: 100%;
    padding: 10px 0;
    /*pointer event stops the mouse being unable to click the "faq" and "contact me".*/
    font-size: 50px;
    text-transform: uppercase;
    text-shadow: black 1px 1px 5px;
}

.cat-description {
    margin-left: 20px;
    width: 50%;
    font-size: 25px;
    float: right;
    text-align: center;
    padding: 2em;
}

.cat-entry:nth-child(2n) {
    flex-direction: row-reverse;
}

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

    .cats .cat-entry {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0px;
    }

    .cat-entry .entry-title {
        font-size: 6vw;
    }

    .cat-picture {
        width:100%;
    }

    .cat-description {
        padding: 1em;
        width: 100%;
    }
}

.table {
    color: #ffffff;
}

.text-center {
    width:100%;
    text-align:left;
}

.flex-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.flex-container > div {
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
}
.flex-container > div img {
    width: 100%;
 }


table tr img {
    width:100%;
}

.indexImages .flex-container {
    padding-bottom: 50px;
}

/*art*/

.bottom-images {
    display: flex;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
}

    .bottom-images img {
        max-width: 200px;
        padding: 5px;
        margin: 0 50px 100px;
        background: #161616;
        border-radius: 5%;
    }

.main-heading {
    text-align: center;
    font-size: 40px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

    .gallery img {
        max-width: 100%;
        background: #161616;

    }

    .gallery .entry {
        float: left;
        max-width: 100%;
        width: 400px;
        margin: 10px;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        position: relative;

    }

    .gallery .entry-title {
        position: absolute;
        text-align: center;
        color: white;
        font-weight: bold;
        font-size: 20px;
        bottom: 0;
        width: 100%;
        padding: 20px 0;
        background-color: rgba(0,0,0,0.5);
    }

/*-----------------------------------------------------------------------------------------*/

.index-picture{
    padding-top: 50px;
    width:100%;
}

.index-text {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    background: #161616;
}

    .index-text .aboutme {
        width: 50%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        padding: 20px;
        text-align: center;
    }

    .index-text .abouttext {
        padding-top: 50px;
    }

    .index-text #skill-icons {
        padding-right: 50px;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

.index-text .skill-icon-group .skill-icon {
    height: 48px;
}



.skill-icon {
    text-align: center;
    display: inline-block;
    transition: transform 0.3s ease, margin-left 0.3s ease, margin-right 0.3s ease;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
    border-radius: 25%;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1;
}

    .skill-icon:hover {
        transform: scale(1.2);
        margin-left: 5px;
        margin-right: 5px;
    }

    .skill-icon p {
        text-align: center;
        pointer-events: none;
        opacity: 0;
        position: absolute;
        width: 192px;
        left: 50%;
        transform: translateX(-50%);
    }

    .skill-icon:hover p {
        opacity: 1;
    }



@media only screen and (max-width: 2000px) {
    .gallery .entry {
        width: 22%;
        height: auto;
        box-sizing: border-box;
    }

    img {
        width: 100%;
    }

    footer img {
        height: 50px;
        width: 50px;
    }
}

@media only screen and (max-width: 1500px) {
    .gallery .entry {
        width: 30%;
        height: auto;
        box-sizing: border-box;
    }

    .menu .entry-icon {
        width: 400px;
        min-width: 100%;
        height: auto;
    }

    .menu .entry-title {
        padding: 15px 0;
    }

    
    img {
        width: 100%;
    }

    footer img {
        height: 50px;
        width: 50px;
    }
}


@media only screen and (max-width: 1000px) {
    .gallery .entry {
        width: 40%;
        height: auto;
        box-sizing: border-box;
    }
    .menu .entry-title {
        padding: 10px 0;
    }

    .index-text {
        display: block;
    }

    .index-text .aboutme {
        width: 100%;
    }

    .index-text #skill-icons {
        width: 100%;
    }

    img {
        width: 100%;
    }

    footer img {
        height: 50px;
        width: 50px;
    }
}


@media only screen and (max-width: 500px) {
    .gallery .entry {
        width: 90%;
        height: auto;
        box-sizing: border-box;
    }
    .menu .entry-title {
        padding: 0px 0;
        text-shadow:none;
    }

    .menu-category .banner .entry-title {
        text-shadow: none;
    }

    img {
        width: 100%;
    }

    .index-text {
        display: block;
    }

    .index-text .aboutme {
        width: 100%;
    }

    .index-text #skill-icons {
        width: 100%;
    }

    footer img {
        height: 50px;
        width: 50px;
    }
}