
.body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    overflow-x: hidden;
    background-color: #e9e9e9;
    background-image: url("imagens/fundo.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: fixed;
    max-width: 100vw;
    max-height: 100vw;
}

.cs{
    margin: 0;
    background-color: #420505;
    color: #faffad;
    overflow-x: hidden;
}

.imgLogo{
    background-color: #f9ffa7;
    border-radius: 20px;
    width: 50%;
}

.creditos-content{
    align-items: center;
    justify-content: center;
    text-align: center;
    display: inline-flexbox;
    color: #faffad;
}

.txt{
    margin-left: 15%;
    margin-right: 15%;
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
    .medieval-menu a{
        font-size: 18px;
    }

    .medieval-menu li {
        margin-right: 60px;
    }
}

@media only screen and (max-width: 3200px) {
    .medieval-menu a{
        font-size: 18px;
    }

    .medieval-menu li {
        margin-right: 60px;
    }
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .medieval-menu a{
        font-size: 14px;
    }

    .medieval-menu li {
        margin-right: 60px;
    }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
    .medieval-menu a{
        font-size: 15px;
    }

    .medieval-menu li {
        margin-right: 5px;
    }
    .imgLogo{
        
        width: 90%;
    }
}


@font-face {
    font-family: Augusta;
    src: local(Augusta), url(fonte/Augusta.ttf)
}

* {
    scrollbar-width: thin;
    scrollbar-color: #faffad #420505;
}

*::-webkit-scrollbar-thumb {
    background-color: #faffad;
    border-radius: 10px;
    border: 5px solid #420505;
}


.txtC {
    text-align: center;
    font-family: Augusta;
}

/*---------MENU DAS PAGINAS---------*/

.medieval-menu {
    background-color: #420505;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    height: 30px;
}

.medieval-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
}

.medieval-menu li:last-child {
    margin-right: 0;
}

.medieval-menu a {
    text-decoration: none;
    color: #FFD700;
    /* Amarelo */

    padding: 10px 15px;
    transition: all 0.3s;
    border-radius: 10px;
}

.medieval-menu a:hover {
    color: #111;
    /* Preto */
    background-color: #ffd900a4;
    /* Amarelo */
    border-radius: 10px;
}

.medieval-menu a::before {
    content: '⚔';
    /* Símbolo medieval */
    margin-right: 8px;
}

#dragon {
    height: 60px;
    /* Ajuste o tamanho conforme necessário */
    filter: brightness(2);
    filter: saturate(2);
    position: absolute;

}

/*---------CARDS---------*/

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.card {
    width: auto;
    background: #000000ce;
    padding: 6px;
    border-radius: 6px;
    display: inline-block;
    cursor: pointer;
}

.card-image {
    background-color: rgb(236, 236, 236);
    width: 100%;
    height: auto;
    border-radius: 6px;
    cursor: pointer;
}

.card-image:hover {
    transform: scale(0.96);
    transition: all 0.3s;
}

.nome {
    text-transform: uppercase;
    font-size: 0.7em;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 7px 0;
    cursor: pointer;
}

.category:hover {
    cursor: pointer;
}

.numero {
    font-weight: 600;
    color: #FFD700;
    padding: 7px;
}

.heading:hover {
    cursor: pointer;
}



footer {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #420505;
    color: #FFD700;

}

.center{
    text-align: center;
}