body {
    background-color: #6c3c0c;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin: 0;
}

/**** Imagens Iniciais e outras ****/
.imagens-iniciais,
.imagensLepra,
.imagensPeste,
.imagensEscorbuto {
    display: flex;
    justify-content: center;
    gap: 1%; 
    margin-top: 10px;
}
/****  **** /

/****  tamanho das imagens ****/
.imagemInicio,
.fotoInicio2,
.imagemLepra,
.imagemPeste,
.imagemEscorbuto {
    width: 48%;
    height: auto;
}
/**** *****/

/**** Lepra *****/
.tituloLepra {
    text-align: left;
    font-size: 25px;
    margin-bottom: 10px;
    color: blue;
}

.textoLepra {
    text-align: left;
    max-width: 800px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.lepra-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}
/**** ****/

/**** Peste ****/
.peste-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.textoPeste {
    text-align: left;
    max-width: 800px;
    font-size: 20px;
    line-height: 1.5;
}

.tituloPeste {
    text-align: left;
    font-size: 25px;
    margin-bottom: 10px;
    color: white;
}
/**** *****/

/**** Escorbuto *****/
.escorbuto-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.textoEscorbuto {
    text-align: left;
    max-width: 800px;
    font-size: 20px;
    line-height: 1.5;
}

.tituloEscorbuto {
    text-align: left;
    font-size: 25px;
    margin-bottom: 10px;
    color: yellow;
}
/**** *****/

/**** Rodapé *****/
.rodape {
    color: red;
    text-align: center;
    background-color: black;
    font-size: 25px;
    padding: 10px 0;
}
/**** *****/



.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%);
}


