 * {
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

body {
    background-color: #40aee1;
    /*background-image: repeating-linear-gradient(135deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
    */
    position:relative;
    margin:0px;
    font-family:'Ubuntu Condensed', sans-serif;
    min-height: 100%;
}

/* Homepage CSS */
.content-container{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main-container{
    background-color: #40aee1;
    width: 610px;
    padding: 0;
    text-align: center;
    display:inline-block;
    position: relative;
    vertical-align: top;
}

.tweets-container{
    display:inline-block;
    width: 300;
}

.main-container a:link, a:visited, a:active, a:hover{
    text-decoration: none;
}

.main-image{
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    width: 100px;
    display:inline;
}

/*Selector Business Starts Here*/
.selector-container{
    width: 200px;
    height: 200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    
    background-color: #FF0000;
    font-size: 24px;
    padding: 0px;
    
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.selector-left {
    border-radius: 50px 0 0 0;
}

.selector-right {
    border-radius: 0 0 50px 0;
}

.selector-container:hover .selector-text{
    opacity: 1;
}

.selector-container:hover .selector-bg{
    background-color: rgba(0, 0, 0, 0.7);
}

.selector-bg{
    margin: 0;
    width: 200px;
    height: 200px;
    display: inline-block;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.selector-text{
    top: 100px;
    text-align: center;
    width: 100%;
    position: absolute;
    
    font-size: 24px;
    color: white;
    opacity: 0;
    
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.main-spacer{
    display: inline-block;
    width: 50px;
    height: 25px;
    margin: 0;
}

/* General */

#content {
    margin-left:auto;
    margin-right:auto;
    background-color:#FFFFFF;
    width:500px;
    height:100vh;
}

#banner {
    background-image:url("/images/pluto.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 50px;
    margin-left:auto;
    margin-right:auto;
    background-color: black;
}

#navbar {
    text-align:center;
    color:#FFFFFF;
    margin-left:auto;
    margin-right:auto;
    background-color:#333333;
}

#footer {
   color:#FFFFFF;
   position:absolute;
   bottom:0;
   width:100%;
   height:25px;   /* Height of the footer */
   background:#333333;
   vertical-align: bottom;
   padding-top: 5px;
}

.foot-content{
    vertical-align: middle;
}

/* General Link Behaviors*/
a:link {
    color: #FFFFFF;
}
a:visited {
    color: #CCCCCC;
}
a:hover {
    color: #CCCCCC;
}
a:active {
    color: #FF0000;
}

/* Navbar Link Behaviors */
#navbar a {
    color: #CCCCCC;
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

#navbar a:link, a:visited, a:active {
    color: #CCCCCC;
}

#navbar a:hover{
    color: #FFFFFF;
}


#toplink {
	position:fixed;
	bottom:0;
	text-align:right;
	width:100%;
}

h1 {
    color: white;
}

#spacer {
    height:100px;
    width:25px;
    display:inline-block;
}

span { text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

#game-row {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
}
#game-container {
    vertical-align: top;
    width: 200px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;

    -webkit-perspective: 1000px;
    perspective: 1000px;

    display: inline-block;
    position:relative;
}

#game-container a {
    display: block;
    width: 100%;
    height: 100%;
    
    transition: all 0.5s;

    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;

    -webkit-transform-origin: bottom;
    transform-origin:bottom;

    -webkit-transform: rotateX(80deg);
    -moz-transform: rotateX(80deg);
    transform: rotateX(80deg);

    -webkit-border-radius: 50px 0 0 0;
    -moz-border-radius: 50px 0 0 0;
    border-radius: 50px 0 0 0;
}

#game-container #desc {
    background-color:#CCCCCC;
    left:0px;
    bottom: 0px;
    width: 200px;
    height: 150px;
    position:absolute;
    opacity: 0;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}
#game-container:hover a {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
#game-container:hover #desc {
    opacity: 1;
    left: 200px;
}
/*bottom surface */
#game-container a:after {
    /*36px high element positioned at the bottom of the image*/
    content:'';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 32px;
    /*inherit the main BG*/
    background: inherit;
    background-size: cover, cover;
    /*draw the BG bottom up*/
    background-position: bottom;

    /*rotate the surface 90deg on the bottom axis*/
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
/*label style*/
 #game-container a span {
    color: white;
    text-transform: uppercase;
    position: absolute;
    top: 100%;
    padding-top: 10px;
    left: 0;
    width: 100%;
    font: bold 12px/36px;
    text-align: center;

    /*the rotation is a bit less than the bottom surface to avoid flickering*/ 
    -webkit-transform: rotateX(-89.99deg);    
    transform: rotateX(-89.99deg);
    
    -webkit-transform-origin:top;
    transform-origin: top;
}
/*shadow*/
 #game-container a:before {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 100px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    /*by default the shadow will be almost flat, very transparent, scaled down with a large blur*/
    opacity: 0.15;
    -webkit-transform: rotateX(0) translateZ(-60px) scale(0.85);
    transform: rotateX(0) translateZ(-60px) scale(0.85);
    
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
#game-container:hover a:before {
    opacity: 1;
    /*blurred effect using box shadow as filter: blur is not supported in all browsers*/
    box-shadow: 0 0 25px 25px rgba(0, 0, 0, 0.5);

    /*pushing the shadow down and scaling it down to size*/
    -webkit-transform: rotateX(95deg) translateZ(-80px) scale(0.75);
    transform: rotateX(95deg) translateZ(-80px) scale(0.75);
}


#voice-row {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.role-list {
    font-style: italic;
}

.role-box {
    margin: 25px;
}

.about-row {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    width:400px;
}

.about-prof {
    background-color: #CCCCCC;
    padding: 5px;
    border-radius: 5px 5px 5px 5px;
}