body {
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url(fundo.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    background: #5e2d0069;
    color: #000000;
    padding: 16PX 0;
    text-align: center;
    font-family: 'Courier New', Courier, monospa;
}

header h1 {
    margin: 0;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    font-family:'Courier New', Courier, monospace;
}



p {
    font-family: 'Courier New', Courier, monospace; /* Garante que todos os parágrafos usem a mesma fonte */
}

/* Estilos do carrossel */
#carouselSection {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.carousel {
    width: 75%;
    height: 600px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border: none;
}

.carousel-inner {
    display: flex;
    width: 800%;
    height: 100%;
    animation: slide 60s infinite;
}

.carousel-item {
    width: 12.5%;
    flex: 1 0 auto;
}

.carousel-item img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    display: block;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

footer {
    text-align: center;
    position: fixed;
    padding: 5px;
    bottom: 0;
    width: 100%;
    background: #5e2d0069;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
}
.highlight {
    color: red;
    font-weight: bold;
}

.center{
    text-align: center;
}

.medieval-button {
    position: relative;
    background-color: #000000;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 15px;
    border-style: solid;
    overflow: hidden;
    z-index: 1;
}

.medieval-button::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -10%;
    height: 180%;
    width: 0;
    border-radius: 100%;
    background-color: #420505;

    transition: all 750ms 0.3s;
}

.medieval-button:hover::before {
    width: 120%;
    height: 180%;
    transition: all 750ms 0.7s;
}

.button-text {
    position: relative;
    z-index: 2;
    color: white;
}

.sword {
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    transition: right 0.5s ease;
    z-index: -1;
    height: 40px;
}

.medieval-button:hover .sword {
    right: calc(25%);
}
