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

body,html {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    /* background: #3f51b5; */
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
    word-wrap: break-word;
    counter-reset: names;
}
#primary .container {
    margin: 15px 10px;
    background: #fff;
    padding: 10px 10px 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 4px -3px #000;
    border: 1px solid #818181;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 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;
}
.sub_heading {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 4px 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;}

html {
    background-color: #607db8;
    opacity: 1;
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(45deg, #d5e0f7 0, #d5e0f7 0.5px, #607db8 0, #607db8 50%);
}

footer {
    position: relative;
    clear: both;
}


@font-face {
    font-family: mono2;
    src: local('consolas'), local('courier'), local('Menlo-Regular'), url('../fonts/SourceCodePro-VariableFont_wght.ttf');
    font-display: swap;
}