body {
    background-image: url(".jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
    background-color: #B22222;
}
.texto {      
    margin-left:10%;
    margin-right:10%;
    text-align: center;
    font-family:cursive;
    font-size: 20px;
    
        }
.imga {
    height: 250px;
    width: 500px;
}

.imagens {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px;
}
.divs{
    text-align: center;
}

.titulo{
    margin-left:10%;
    margin-right:10%;
    text-align: center;
    font-family:cursive;
    font-size: 38px;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: 16px;
    background-color: #FFD700;
    padding: 12px;
}


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