/*
 * @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600);
 * @import url(http://fonts.googleapis.com/css?family=Varela+Round);
 */

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap')
@import url('//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack.css'); 

body {
    background-image: url( ../image/CREATeNG.background.jpg );
    background-repeat: no-repeat;
    background-color: rgb(10, 9, 8);
}

#content {
  
    /*font-family: Roboto,"Segoe UI", "Dejavu Sans", Arial, sans-serif; */
    font-family: Roboto;
    font-size: 20px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 460; 
    
    color: white;
    float: left;
    /*display: inline-block;*/
    display: block;
    border: none;
    text-align: left;
    /*text-decoration: none;*/
    padding: 15px;
    text-shadow: 3px 3px 3px #000000;
    /* background-color: #333; */
    /* background-color: rgb(0, 0, 0,1.0); */
    background: Transparent no-repeat;
    
    /* opacity: 0.5; */
    /* filter: alpha(opacity=50); */

    overflow: hidden;
    outline: none;
}

#content a {
    color: white;
}

#content a:hover {
    color: cyan;
    background-color: #333;
    opacity: 0.5;
    filter: alpha(opacity=50);
}

#content li {
    font-size: 16px; 
    background-color: rgb(27, 27, 27);
    opacity: 0.90;
    filter: alpha(opacity=90);
}

.topnav {
    
    background: Transparent no-repeat;
    overflow: hidden;
    
}

/* Style the links inside the navigation bar */
.navbutton {
    /* font-family: "Segoe UI", "Dejavu Sans", Arial, sans-serif;*/
    font-family: Roboto;
    color: white;
    float: left;
    /*display: inline-block;*/
    display: block;
    border: none;
    text-align: center;
    /*text-decoration: none;*/
    padding: 14px 16px;
    font-size: 17px;
    text-shadow: 1px 1px 1px #000;
    background-color: rgb(27, 27, 27);
    /*background-color: rgb(0, 0, 0,1.0);*/
    /*background: Transparent no-repeat;*/
    
    opacity: 0.7;
    filter: alpha(opacity=70);

    overflow: hidden;
    outline: none;
    /*opacity: 0.5; */
    /*filter: alpha(opacity=50); */
    /* For IE8 and earlier */
}

/* Change the color of links on hover */
.navbutton:hover {
    border: none;
    background-color: #d0d0d0;
    color: black;
    opacity: 1.0;
    filter: alpha(opacity=100);
    /* For IE8 and earlier */
}

/* Add an active class to highlight the current page */
.navbutton.active {
    border: none;
    background-color: rgb(209, 124, 45);
    color: white;
    opacity: 1.0;
    filter: alpha(opacity=100);
    /* For IE8 and earlier */
}



/* this is when the screen is wide... */
@media screen and (min-width: 800px) {

    body {
        background-size: cover; 
    }

    /* Hide the link that should open and close the topnav on small screens */
    .topnav .listicon {
        display: none;
    }
    
}

/* this is when the screen is narrow... */
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the listicon. 
     This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
/* When the screen is less than 800 pixels wide, hide all links, except for the Active one (, eg "Home" to start with). 
     Show the link that contains should open and close the topnav (.listicon) */
@media screen and (max-width: 800px) {
    
    body {
        background-size: 800px;
    }

    .navbutton:not(.active) {
        display: none;
    }

    navbutton.active:not(listicon) {
        width: 130px;
    }
    
    .navbutton.listicon {
        background-color: rgb(209, 124, 45);
        color: white;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .navbutton.listicon {
        display: none;
    }

    .topnav.responsive .navbutton {
        float: none;
        display: block;
        text-align: left;
        width: 130px;
        text-shadow: 2px 2px 2px #000;
        opacity: 0.95;
        /* For IE8 and earlier */
        filter: alpha(opacity=0.95);
    }

    #content {
        font-size: 16px; 
    }
    #content li {
        font-size: 14px; 
        background-color: rgb(27, 27, 27);
        opacity: 0.95;
        filter: alpha(opacity=95);
    }
}


iframe {
  max-width: 100%;
}


/*=======================================================
 * Spinner
 * =========================================================*/
.spinner{
     width:100px;
     height:100px;
     margin:30px auto;
     position:relative;
     -webkit-animation: rotateit 1.3s linear infinite;
     -moz-animation: rotateit 1.3s linear infinite;
     animation: rotateit 1.3s linear infinite;
}
@-webkit-keyframes rotateit {
     from {
          -webkit-transform: rotate(360deg);
     }
     to {
          -webkit-transform: rotate(0deg);
     }
}
@-moz-keyframes rotateit {
     from {
          -moz-transform: rotate(360deg);
     }
     to {
          -moz-transform: rotate(0deg);
     }
}
@keyframes rotateit {
     from {
          transform: rotate(360deg);
     }
     to {
          transform: rotate(0deg);
     }
}
/*=======================================================
 * Circles
 *======================================================*/
.spinner.circles div{
     width: 20px;
     height: 20px;
     border-radius:50%;
     background: black;
     position: absolute;
     top: 35px;
     left: 45px;
}
.spinner.circles div:nth-child(1){
     -webkit-transform: rotate(0deg) translate(0, -35px) scale(1.4);
     -moz-transform: rotate(0deg) translate(0, -35px) scale(1.4);
     transform: rotate(0deg) translate(0, -35px) scale(1.4);
}
.spinner.circles div:nth-child(2){
     -webkit-transform: rotate(45deg) translate(0, -35px) scale(1.2);
     -moz-transform: rotate(45deg) translate(0, -35px) scale(1.2);
     transform: rotate(45deg) translate(0, -35px) scale(1.2);
     opacity:0.7;
}
.spinner.circles div:nth-child(3){
     -webkit-transform: rotate(90deg) translate(0, -35px) scale(1.1);
     -moz-transform: rotate(90deg) translate(0, -35px) scale(1.1);
     transform: rotate(90deg) translate(0, -35px) scale(1.1);
     opacity:0.6;
}
.spinner.circles div:nth-child(4){
     -webkit-transform: rotate(135deg) translate(0, -35px) scale(0.9);
     -moz-transform: rotate(135deg) translate(0, -35px) scale(0.9);
     transform: rotate(135deg) translate(0, -35px) scale(0.9);
     opacity:0.5;
}
.spinner.circles div:nth-child(5){
     -webkit-transform: rotate(180deg) translate(0, -35px) scale(0.7);
     -moz-transform: rotate(180deg) translate(0, -35px) scale(0.7);
     transform: rotate(180deg) translate(0, -35px) scale(0.7);
     opacity:0.4;
}
.spinner.circles div:nth-child(6){
     -webkit-transform: rotate(225deg) translate(0, -35px) scale(0.5);
     -moz-transform: rotate(225deg) translate(0, -35px) scale(0.5);
     transform: rotate(225deg) translate(0, -35px) scale(0.5);
     opacity:0.3;
}
.spinner.circles div:nth-child(7){
     -webkit-transform: rotate(270deg) translate(0, -35px) scale(0.3);
     -moz-transform: rotate(270deg) translate(0, -35px) scale(0.3);
     transform: rotate(270deg) translate(0, -35px) scale(0.3);
     opacity:0.2;
}
.spinner.circles div:nth-child(8){
     -webkit-transform: rotate(315deg) translate(0, -35px) scale(0.1);
     -moz-transform: rotate(315deg) translate(0, -35px) scale(0.1);
     transform: rotate(315deg) translate(0, -35px) scale(0.1);
     opacity:0.1;
}
