body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('fundo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 90%;
    box-sizing: border-box;
    margin: 5%;
}

h1 {
    font-size: 3em;
    margin: 0;
}

.text {
    background-color: #774d0d63;
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    color: white;
    text-align: center;
    font-size: 1.4em;
    box-sizing: border-box;
    border: 1px white groove;
}

.subtitulo {
    font-size: 2.5em;
    margin-top: 30px;
    color: #ffffff;
}

.content img {
    width: 100%;
    height: auto;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 10px;
}

.additional-img {
    margin-top: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    height: auto;
}

.image-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.image-row img {
    width: calc(20% - 10px);
    height: auto;
    border-radius: 10px;
}

.rodape {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #806c3f;
    color: white;
    text-align: center;
    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%);
}

