:root{
    --colorlink:#162ca9;
    --colorlinkhover: #0026ff;
    --colorbg:#6179ff;
    --colorprimary: #4965ff;
}

body,html {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--colorbg);
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
#primary .container {
    margin: 15px 10px;
    background: #fff;
    padding: 10px 10px 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 3px -1px #000;
}

/* Text Color */
a {
    color: var(--colorlink);
}
a:hover{
    color:var(--colorlinkhover);
}

/* Layout Css */

main {
    margin-top: 70px;
}


.two {
    display: none;
}





/* Upvote/Downvote Css */
span.u:before {content: "\f584";content: "\f139";font-weight: 600;}
span.v > span:before {
    font-family: 'FontAwesome';
    margin-right: 5px;
    font-size: 16px;
}
span.d:before {content: "\f556";content: "\f13a";font-weight: 600;}
span.v {display: block;text-align: center;}
span.v > span {
    display: inline-flex;
    height: 27px;
    line-height: 27px;
    padding: 0 5px;
    font-size: 11px;
    color: #555a74;
    user-select: none;
}
span.u:before {
    color: #009688;
}
span.d:before {
    color: #c83000;
}


/* Media Queries */

@media only screen and (min-width:760px){

    main {
        position: relative;
    }
    #primary {
        width: 70%;
        float: left;
    }
    aside.right.sidebar {
        width: 30%;
        margin: 15px 0;
        box-sizing: border-box;
        float: right;
        padding: 0 10px 0px 0;
    }
    aside.right.sidebar > section {
        margin: 0 0 15px!important;
    }
}

@media only screen and (min-width:1100px){
    main {
        margin-left: 20%;
        margin-top: 55px;
        width: 80%;
    }
}

button {
    cursor: pointer;
}

.head {
    margin: 0;
    text-align: center;
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 6px;
}
.sub_heading {
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 2px auto 15px;
    text-align: center;
}

/* Animations */
@keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }

body.admin-bar header.top,body.admin-bar nav.sidebar-menu{
    top: 46px;
}

@media only screen and (min-width:782px){
    html body.admin-bar header.top,html body.admin-bar nav.sidebar-menu{
        top: 32px;
    }
}

i {
    font-size: 14px;
}

.stylish_name_generator .separator {
    display: block;
    width: 90%;
    border-top: 2px dashed #fff;
    margin: 25px auto;
}

span.c:before {content: "\f4ad";font-weight: 600;}



footer {
    position: relative;
    clear: both;
}

.advert {
    text-align: center;
}


@media (max-width: 550px){
    #primary .container,main aside.right.sidebar .container{
        margin: 15px 5px;
    }
}

.go_back_button {
    display: block;
    margin: 10px 5px;
    text-align: center;
    width: 162px;
    height: 45px;
    background: #fff;
    line-height: 46px;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 0 3px -1px #000;
    outline: none;
    border: 0;
    color: #444444;
}

.go_back_button:before {
    content: "\f100";
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 23px;
    vertical-align: top;
    margin-right: 9px;
    opacity: 0.9;
}