Basic Dark Souls-like Styling

This box has Dark Souls-like styling.

Style Description

The box above uses a dark background splash image with a subtle texture, reminiscent of the Dark Souls aesthetic. The text is styled with a Trajan Pro Regular font to give it that FROM feel, and the border has a slightly worn look to enhance the theme.

CSS Code

.example-box{
        font-family: "Trajan Pro Regular", serif;
        font-size: large;
        text-align: center;
        color: rgb(174, 0, 0);
        background-image: url(./images/blackSplash.png);
        background-position: center;
        background-size: cover;
        padding: 50px;
    }

.example-box p{
    text-shadow: 5px 0px 2px 2px #382609;
}