/* Code by Dragon */

body {
    background-color: black;
    color: white;
    font-family: "IBM Plex Sans", sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    color: red;
    text-align: center;
    overflow: hidden;
    margin: 10px 0;
}

h1 span { display: inline-block; position: relative; }

h1 span::before, h1 span::after {
    content: "";
    height: 2px;
    width: calc(45vw - 50% - 15px);
    position: absolute;
    top: 50%;
    background-color: currentColor;
}

h1 span::before { right: 100%; margin-right: 15px; }
h1 span::after { left: 100%; margin-left: 15px; }

h2 { font-size: 40px; }

p { color: #aaa; font-size: 20px;}