@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap');

body {
    background-color: #474747;
    margin: 0px;
}

.aload {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
    text-align: center;
}

.aload span {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: .5em;
    background: #555;
    position: absolute;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite
}

.aload span:nth-child(1), .aload span:nth-child(2) {
    left: 0
}

.aload span:nth-child(3) {
    left: 1.5em
}

.aload span:nth-child(4) {
    left: 3em
}

@keyframes reveal {
    from {
        transform: scale(.001)
    }

    to {
        transform: scale(1)
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.aload span:nth-child(1) {
    animation-name: reveal
}

.aload span:nth-child(2), .aload span:nth-child(3) {
    animation-name: slide
}

.aload span:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse
}


.emojidetails {
    position: relative;
    display: inline-block;
    margin: 4px;
    background: #fff;
    border: 2px solid #f7f7f7;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.emojidetails span {
    display: block;
    padding: 6px;
    overflow: hidden;
    font-size: 49px;
    background: #fff;
    border-radius: 3px;
}

.emojidetails p {
    display: none;
}

.emojidetails:hover {
    border-color: #0141d0;
}

p.copied {
    position: fixed;
    width: 260px;
    right: 0;
    bottom: 25%;
    background: #0141d0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0;
    z-index: 99999;
    box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, .41);
}

p.copied span {
    float: left;
    width: 100%;
}

p.copied .text {
    background: transparent;
    color: #fff;
    border: none;
    width: 100%;
}

/*-- Header --*/

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.container {
    height: 60px;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.container .logo {
    max-width: 200px;
    padding: 0 10px;
    overflow: hidden;
}

.container .logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
}

.container .logo a img {
    max-width: 100%;
    max-height: 45px;
}

.container .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
    justify-content: flex-end;
}

.container .navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.container .navbar ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    display: block;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    padding: 0 18px;
    font-family: 'Martel';
}

.container .navbar ul .close {
    display: none;
    text-align: right;
    padding: 10px;
}

.container .navbar ul .close span {
    font-size: 40px;
    display: inline-block;
    border: 1px solid #cccccc;
    padding: 0 10px;
    cursor: pointer;
    color: #ffffff;
}

.container .navbar .icon-bar {
    padding: 18px 8px;
    width: 42px;
    height: 55px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.container .navbar .icon-bar i {
    background-color: #ffffff;
    height: 2px;
}

@media only screen and (max-width: 920px) {
    .container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0px 0px;
    }

    .container .logo {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .container .navbar {
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
    }

    .container .navbar ul {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        position: fixed;
        left: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        height: 100%;
        overflow: auto;
        -webkit-transition: left .3s;
        -o-transition: left .3s;
        transition: left .3s;
    }

    .container .navbar ul li a {
        padding: 15px 10px;
        font-size: 25px;
        height: auto;
        line-height: normal;
        color: #ffffff;
    }

    .container .navbar ul .close {
        display: block;
    }

    .container .navbar .icon-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .container .navbar ._Menus-show {
        left: 0;
        background-color: #9733c7;
    }
}

.container li {
    text-align: center;
}

.mainheading {
    background: #1a73e8;
    padding: 10px 15px 10px;
    border-radius: 7px;
    margin: 15px 0px;
}

h1.mainh1 {
    font-weight: 1000;
    color: #ff0;
    font-size: 2.5rem;
    margin-bottom: .5rem;
    line-height: 1.2;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


/*-- Main Content --*/

.content-box {
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px;
}

ul#nav-lists li {
    margin: 5px;
}

.feed-links,
.post-footer-line.post-footer-line-1,
.status-msg-body,
.status-msg-hidden,
div#blog-pager,
span.widget-item-control,
div#cookieChoiceInfo {
    display: none
}


/*--Main--*/

.container {
    padding: 20px;
    text-align: center;
    background-color: #1a73e8;
    border-radius: 0px;
    max-width: 1200px;
    width: 100%;
}

.pageheading {
    color: #000000;
}

ul.pageheading li {
    color: #000000;
    font-size: 15px;
}

p.footerpara {
    font-size: 20px;
    margin: 5px;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

.column {
    width: 100%;
    padding: 5px;
    height: auto;
}

.rightside h3 {
    margin: 10px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/*--Demon Name Generator--*/

.alertone {
    padding: 5px 0;
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    color: #333;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 3px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    margin: 6px 0px;
    box-shadow: 0PX 0PX 2px 0 rgb(0 0 0 / 25%);
}

button#btnMale {
    margin: 10px 0px 5px 0px;
    padding: 8px 8px;
    font-size: 18px;
    cursor: pointer;
    white-space: nowrap;
    width: fit-content;
    text-align: center;
    overflow: hidden;
    color: #f5f6fb;
    background: #001fff;
    border: 2px solid #eee;
    border-radius: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
}

.alertone:hover {
    color: #000;
    z-index: 10;
    transform: scale(1.05);
    box-shadow: 0 0 10px 0 #d6d6d6;
}

p#copytext_0,
p#copytext_1,
p#copytext_2,
p#copytext_3,
p#copytext_4,
p#copytext_5,
p#copytext_6,
p#copytext_7,
p#copytext_8,
p#copytext_9 {
    line-height: 0px;
    display: block;
    margin-block-start: 16px;
    margin-block-end: 16px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

div#result {
    font-family: 'Josefin Sans';
    margin: 12px 25px;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
        text-align: center;
    }

    h2 {
        font-size: 22px;
    }

    .top img {
        width: 290px;
    }

    div#result {
        font-family: 'Josefin Sans';
        margin: 12px 12px;
    }
}

.button {
    border: none;
    text-decoration: none;
    background-color: transparent;
}

.button a {
    font-weight: bold;
    background: #d6071e;
    border-radius: 5px;
    color: #ffffff;
    display: block;
    border: 1px solid #bd081c;
    margin-bottom: 5px;
    padding: 6px;
    text-decoration: none;
    transition: all .3s ease;
    font-family: 'Josefin Sans';
    font-size: 15px;
}

.links h3 {
    font-size: 17px;
    font-family: 'Josefin Sans';
    margin: 5px;
    line-height: 1.2em;
}

.links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.links a {
    font-size: 15px;
    color: #fff;
    background: #1a73e8;
    background-image: linear-gradient(110deg, rgba(255, 255, 255, .1) 16%, rgba(255, 255, 255, .1) 17%, rgba(255, 255, 255, .05) 17%, rgba(255, 255, 255, .05) 23%, transparent 8.5%, transparent 78%, rgba(255, 255, 255, .05) 78%, rgba(255, 255, 255, .05) 84%, rgba(255, 255, 255, .1) 84%, rgba(255, 255, 255, .1));
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 4%), 0 3px 1px -2px rgb(0 0 0 / 5%), 0 1px 5px 0 rgb(0 0 0 / 4%);
    transition: all .5s ease;
    padding: 8px 15px 8px;
    border-radius: 3px;
    margin-right: 4px;
    margin-bottom: 4px;
    text-decoration: none;
}

hr.solid {
    border-top: 1px solid #e0e0e0;
    margin: 0px;
}

h1 {
    font-size: 40px;
    text-align: center;
    line-height: 3.5rem;
    margin: 15px;
    font-family: 'Josefin Sans', sans-serif;
}

@media screen and (max-width: 590px) {
    h1 {
        font-size: 35px;
        text-align: center;
        line-height: 2.5rem;
        margin: 15px;
        font-family: 'Josefin Sans', sans-serif;
    }
}

.demonarticle {
    padding: 10px;
    max-width: 860px;
    margin: 0px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.demonarticle h2 {
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    margin: 15px 0px;
    padding: 0px;
}

img.responsive {
    width: 100%;
    max-width: 790px;
    height: auto;
}

.demonarticle p,
ul,
li {
    line-height: 2rem;
    font-size: 17px;
}

table {
    border-collapse: collapse;
    width: 100%;
    color: #000000;
}

td,
th {
    border: 2px solid #000;
    text-align: left;
    padding: 8px;
    font-size: 1.2em;
}

#result p {
    margin: 7px;
}

.copyright-area a {
    color: #001fff;
    text-decoration: none;
}

.feed-links,
.post-footer-line.post-footer-line-1,
.status-msg-body,
.status-msg-hidden,
div#blog-pager,
span.widget-item-control,
h2.date-header {
    display: none
}

div#cookieChoiceInfo {
    display: none;
}