* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #7e6665
}

h1 {
    font-size: 30px;
    margin-top: 45px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imga {
    height: 250px;
    width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
    border-radius: 16px;
}

p {
    font-size: 25px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: justify;
}

.geral {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: 16px;
    background-color: #655251;
    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;
    background-color: #ffffff00;
}

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

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