/*

General CSS Stylesheet for Tufts Girls of Code Website

Font: Open Sans

bright red: #CC0000 (sparingly for accents)
gray #615445 (backgrounds, hover effects)
black #000000 (text/headings, subtle accents)

/* general styling */

html, body {
  margin: 0;
  padding: 0;
}

body {
  background:#ffffff;
  font-family:Open Sans, sans-serif;
  font-size:12px;
  color:rgba(0,0,0,.7);
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;
}

a {
  text-decoration:none;
  color:#cc0000;
  padding-bottom:2px;
  transition-duration: 400ms;
  -webkit-transition-duration: 400ms;
  -moz-transition-duration: 400ms;
  -o-transition-duration: 400ms;
}

a:hover {
    color: #cc0000;
}


h1 {
  color: #000000;
  opacity: .8;
  position: relative;
}



h1:after {
  content:"";
  position: absolute;
  height: 3px;
  width: 30px;
  background: #615445;
  left: 0;
  bottom: -10px;
}

center {
  text-align: center;
}

h2 {
  font-size:1.2em;
  margin: 0;
  font-style: italic;
}

p {
  letter-spacing: .02rem;
}

/* added this for huge text */ 
b {
    font-size: 250%;
    color: #000000;
    opacity: .8;
    letter-spacing: .03rem;
    font-weight: bold;
    text-align: center;
}

blockquote {
  letter-spacing: .03rem;
  font-weight: 300;
  font-style:italic;
  position: relative;
}

blockquote::before {
  position: absolute;
  opacity: 0.6;
  color: #615445;
  font-size: 46px;
  font-weight:bold;
  font-family: Georgia;
  margin-left: -15px;
  margin-top: 5px;
  z-index: -1;
  font-style: normal;
}

ul {
  list-style-type:none;
  padding:.5em 0 .5em 15px;
  color: #000000;
}

li {
  position: relative;
  margin-left: 10px;
  color: #000000;
  opacity: 0.8;
}

li a {
    color: #cc0000;
}

li:before {
    left:0;
    top:0;
    position:absolute;
    content:'›';
    display:block;
    vertical-align:top;
    color: #000000;
    margin-left: -10px;
}

p a {
  border-bottom:1px solid transparent;
}

p a:hover {
  border-bottom-color: #d2bbdf;
}
/* header styling */

#header {
  padding:20px;
  background: #615445;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  z-index:9;
}

#title {
  font-size: 34px;
  letter-spacing: .01rem;
  font-weight: 700;
  color: rgba(0,0,0,.46);
  line-height:34px;
  display: inline-block;
  position: relative;
}

#subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 5px;
  font-weight: 600;
  display:block;
  position: relative;
  color: rgba(255, 255, 255, .87);
}

#links {
  position: relative;
  float: right;
  margin-right: 20px;
  height: 100px;
  line-height: 100px;
  margin-top: -40px;
  color: #000000;
}

#links a {
  margin: 0 10px;
  font-weight: 800;
  color: #000000;
  font-size:14px;
  letter-spacing: .03rem;
  position: relative;
  overflow: hidden;
  border: none;
}

#links a::after {
  content:"";
  position: absolute;
  height: 2px;
  background: rgba(255,255,255, .6);
  width: 0;
  left: 0;
  bottom: -5px;
  transition:  400ms;
  -webkit-transition:  400ms;
  -moz-transition-duration: 400ms;
  -o-transition-duration: 400ms;
}

#links a::before {
  content:"";
  position: absolute;
  height: 2px;
  background: rgba(255,255,255, .6);
  width: 0;
  right: 0;
  top: -5px;
  transition:  400ms;
  -webkit-transition:  400ms;
  -moz-transition-duration: 400ms;
  -o-transition-duration: 400ms;
}

#links a:hover::after, #links a:hover::before {
  width: 100%;
}

#links a:hover {
  color: rgba(0, 0, 0, .6);
}



#logo {
  float: left;
  position: relative;
  width:70px;
  height:70px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  margin-top: -4px;
}

#logo img {
  width:70px;
  margin-top: 7px;
}


#main {
  position: relative;
  margin: 180px auto 100px auto;
  width: 75%;
  max-width: 800px;
  font-size: 1.3em;
  line-height: 180%;
  color: #000000;
  opacity: .8;
}

#footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  background: rgba(0,0,0,.8);
  color: rgba(255, 255, 255, .87);
  padding: 20px;
  font-size: 1.3em;
  text-align: center;
  letter-spacing: .03rem;
}

.link-icon {
  width: 30px;
  margin: 10px;
  filter: invert(1);
  opacity: 0.8;
  transition-duration: 400ms;
  -webkit-transition-duration: 400ms;
  -moz-transition-duration: 400ms;
  -o-transition-duration: 400ms;
}

.link-icon:hover {
  opacity: 1;
}

/* added this for the center */
.center {
  margin: auto;
  width: 60%;
  border: 3px solid #ffffff;
  padding: 10px;
}


.van {
    top: 45%;
    left: 44%;
} 

#axis:hover .move-right{
    transform: translate(350px,0);
    -webkit-transform: translate(350px,0); /** Chrome & Safari **/
    -o-transform: translate(350px,0); /** Opera **/
    -moz-transform: translate(350px,0); /** Firefox **/
}

.object {
    position: static;
    transition: all 2s ease-in-out;
    -webkit-transition: all 2s ease-in-out; /** Chrome & Safari **/
    -moz-transition: all 2s ease-in-out; /** Firefox **/
    -o-transition: all 2s ease-in-out; /** Opera **/
}

#cred {
  font-size: 10px;
  display: block;
  color: rgba(255,255,255,.67);
}
