
/* Change Cursor */

html {
  cursor: url(http://bringerp.free.fr/Files/RotMG/cursor.gif), pointer;
  height: 100%;
}

/* Turtle Facts CSS */

* {
	box-sizing: border-box;
}

#sitecontent {
	max-width: 1280px;
	min-width: 600px;
	margin: 0 auto;
}

.header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
	background: linear-gradient(to bottom right, blue, yellow);
	width: 100%;
}

body {
   background-image: url("images/TurtleBack.gif");
   background-color: #f1f1f1;
   font-family: Arial;
   padding: 20px;
}

.middle {
	background: linear-gradient(to bottom right, blue, yellow);
	width: 100%;
}

.topnav {
    overflow: hidden;
    background-color: green;
	width: 100%;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.bottomnav {
    overflow: hidden;
    background-color: green;
	width: 100%;
}

.bottomnav a {
	display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.bottomnav a:hover {
    background-color: #ddd;
    color: black;
}


.row {
	width: 100%;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.leftcolumn {   
    float: left;
    width: 60%;
}


.rightcolumn {
    float: right;
	width: 35%;
}

.tcard {
     background-color: green;
     padding: 20px;
     margin-top: 20px;
	 border:5px yellow;
	 border-style : dotted;
}

.video {
     background-color: green;
     padding: 20px;
     margin-top: 20px;
	 border:5px yellow;
	 border-style : dotted;
}

.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
	width: 100%;
}



/* Clock CSS */

.start {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 0 2em;
}

#clock {
    position: relative;
    width: 378px;
    height: 378px;
    background-image: url('images/clockFace.png');
    margin: 3em auto;
}

#clock div {
    position: absolute;
}


/* The Clock Magic */
#clock img[src*='second'] {
    -webkit-transition: -webkit-transform 600000s linear;
    -moz-transition: -moz-transform 600000s linear;
    -o-transition: -o-transform 600000s linear;
    -ms-transition: -ms-transform 600000s linear;
    transition: transform 600000s linear;
}

#clock:target img[src*='second'] {
    -webkit-transform: rotate(3600000deg);
    -moz-transform: rotate(3600000deg);
    -o-transform: rotate(3600000deg);
    -ms-transform: rotate(3600000deg);
    transform: rotate(3600000deg);
}

#clock img[src*='minute'] {
    -webkit-transition: -webkit-transform 360000s linear;
    -moz-transition: -moz-transform 360000s linear;
    -o-transition: -o-transform 360000s linear;
    -ms-transition: -ms-transform 360000s linear;
    transition: transform 360000s linear;
}

#clock:target img[src*='minute'] {
    -webkit-transform: rotate(36000deg);
    -moz-transform: rotate(36000deg);
    -o-transform: rotate(36000deg);
    -ms-transform: rotate(36000deg);
    transform: rotate(36000deg);
}

#clock img[src*='hour'] {
    -webkit-transition: -webkit-transform 216000s linear;
    -moz-transition: -moz-transform 216000s linear;
    -o-transition: -o-transform 216000s linear;
    -ms-transition: -ms-transform 216000s linear;
    transition: transform 216000s linear;
}

#clock:target img[src*='hour'] {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}




