/*Welcome to Midnight Clan. Easily customize color elements below.*/
:root{
    /*Recolor Text Elements*/
    --notice-color: rgb(162, 0, 0);
    --text-selection-background-color: rgb(128, 0, 0);
    --text-selection-color: rgb(0, 0, 0);
    --text-color: rgba(196, 196, 196, 0.705);


    /*Recolor Links*/
    --link-color: rgb(99, 0, 0);
    --link-hover-color: rgb(57, 57, 57);

    /*Recolor Backgrounds*/
    --background-color: rgb(0, 0, 0);
}

/*CSS Refresh for consistency.*/
body, ul, li, h1, h2, h3, h4, h5, h6, div, a, img, footer{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

/*Disable the cursor animation if desired by setting it to zero.*/
.blink{
    background-color: var(--text-selection-background-color);
    margin-left: 10px;
    width: 5px;
    height: 46px;
    animation: animate 1s step-end infinite;
    display: inline-block;
    position: relative;
    top: 14px;
}

@keyframes animate{
    0%, 100% {
        opacity: 0;
  }
    50% {
        opacity: 1;
  }
}

::selection{
    color: var(--text-selection-color);
    background: var(--text-selection-background-color);
}

.links{
    color: var(--notice-color);
    text-align: center;
    list-style-type: none;
    font-size: 30px;
    display: inline-block;
}

.header{
    color: var(--text-selection-color);
    background-color: var(--text-selection-background-color);
    padding: 5px;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
}

.theme{
    background-color: var(--background-color);
}

.footer{
    margin: 20px;
}

a{
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

a:hover{
    color: var(--link-hover-color);
}

.content{
    display: inline-block;
}

p{
    line-height: 1.5;
    color: var(--text-color);
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

h2{
    color: var(--text-color);
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
}

hr{
    color: var(--link-color);
}