/*
Theme Name:         Roots
Theme URI:          http://roots.io/
Description:        Roots is a WordPress starter theme based on HTML5 Boilerplate & Bootstrap. <a href="https://github.com/roots/roots/contributors">Contribute on GitHub</a>
Version:            6.5.2
Author:             Ben Word
Author URI:         http://benword.com/

License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/

body {font-size:18px; font-family: 'Roboto',sans-serif; }

.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
color: aqua;
}

h1 {margin:0; padding:0; font-weight:bold; color:#3851BC; margin-top: -40px;}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
color: navy;
  text-shadow:none;
background-color: #fff;
}

.navbar-default .navbar-nav>li>a {color:#fff; font-family: 'Oswald', sans-serif;
text-shadow: 0px 1px 1px #000;
text-transform: uppercase;
letter-spacing: 1px; font-size:18px;}

footer {padding:30px 0 5px 0; margin-top:100px; background-color:#3851BC;}
.navbar-default {background-color:#3851BC; color:#fff; }
p {text-align:justify; margin-bottom:30px; line-height:160%;}
textarea {height:100px;}
.navbar-nav {
  float:none;
	}

	.container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse  {
text-align:center;
	  }
	  
.navbar-nav>li {
  display:inline-block;
	  float:none;
}
	
#scm {
    -webkit-animation: rotation 15s infinite linear;
    -moz-animation: rotation 15s linear infinite;
    -ms-animation: rotation 15s  linear infinite;
    -o-animation: rotation 15s linear infinite;
    animation: rotation 15s linear infinite ;
    margin: 17px auto 0 auto;
    width: 100%;
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}

@-webkit-keyframes rotation {
from {
    -webkit-transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(359deg);
}
}