@import url('https://fonts.googleapis.com/css?family=Droid+Sans+Mono');

body{
    padding:0;
    margin:0;
    font-family:'Droid Sans Mono', Helvetica, Arial, sans-serif;
    font-weight:400;
    background-color: #f2eef7;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23eae4f2' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#header{
    font-weight:300;
}

#container{
    width:100%;
    padding-top:30px;
}

#code-container{
    width:400px;
    height:400px;
    float:right;
    position:relative;
    background-color:rgba(255,255,255,0.7);
    box-shadow:0 0 0 1px rgba(100,100,100,0.1);
    overflow:hidden;
    margin:0 30px 20px 20px;
}

#code{
    padding:20px;
    font-family:'Droid Sans Mono',monospace;
    opacity:0.3;
    cursor:pointer;
    transition:0.2s;
}

#code:hover{
    opacity:1; 
    transition:0.2s;
}

#fibonacci-container{
    padding-left:30px;
}

.fibonacci-span{
    display:inline-block;
    font-size:23pt;
    margin:10px 20px;
    -moz-animation: appear 0.5s forwards;
    -webkit-animation: appear 0.5s forwards;
    animation: appear 0.5s forwards;
    opacity:0;
}

#function-call{
    display:inline-block;
    -moz-animation: appear 0.5s forwards;
    -webkit-animation: appear 0.5s forwards;
    animation: appear 0.5s forwards;
}

#load-bar{
    height:2px;
    width:0;
    background:green;
    position:absolute;
    top:340px;
    left:60px;
    -moz-animation: loadbar 2.2s forwards;
    -webkit-animation: loadbar 2.2s forwards;
    animation: loadbar 2.2s forwards;
}

@keyframes appear{
    0%{
        -webkit-transform:scale(1.3,1.3);
        color:hotpink;
        opacity:0.5;
    }
    100%{
        -webkit-transform:scale(1,1);
        color:black;
        opacity:1;
    }
}
@-webkit-keyframes appear{
    0%{
        -webkit-transform:scale(1.3,1.3);
        color:hotpink;
        opacity:0.5;
    }
    100%{
        -webkit-transform:scale(1,1);
        color:black;
        opacity:1;
    }
}
@-moz-keyframes appear{
    0%{
        -webkit-transform:scale(1.3,1.3);
        color:hotpink;
        opacity:0.5;
    }
    100%{
        -webkit-transform:scale(1,1);
        color:black;
        opacity:1;
    }
}

@keyframes loadbar{
    0%{width:0px}
    100%{width:290px}
}
@-webkit-keyframes loadbar{
    0%{width:0px}
    100%{width:290px}
}
@-moz-keyframes loadbar{
    0%{width:0px}
    100%{width:290px}
}

.blue{color:blue}
.yellow{color:orange}
.green{color:green}