body {
         background-color:#940928;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #750921;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header img {
    width: 300px;
    height: auto;
    margin-top: 10px;
         border-radius: 20px;
}

main {
    padding: 20px;
}

p{
         font-size:25px
}

h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
         padding:10px;
         display:inline;
         background-color:#e3bd00;
         border-radius:20px;
}

section {
    margin-bottom: 40px;
}

footer {
    background-color: #750921;
    padding: 20px;
    text-align: center;
}

footer h2 {
    margin: 0;
    font-size: 1.5em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
         
}

.gallery img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}


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

