body
{
	background-image: url("tilingBackground.jpeg");
	color: gold;
}

table.header
{
	width:100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: black;
	border: 3px solid gold;
	z-index: 9999;
}

div.main
{
width: 70%;
margin: auto;
border: 3px solid gold;
background-color: black;
font-family: candara;
padding: 50px;
}

div.tabletBox
{
	width: 684px;
	height: 1072px;
	background-image: url("AlienTabletBlank.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

div.tabletScreen
{
	position: absolute;
	top: 287px;
	left: 192px;
	width: 300px;
	height: 300px;
	background-color: green;
}

div.tabletKeyboard
{
	position: absolute;
	top: 683px;
	left: 184px;
	width: 316px;
	height: 316px;
}

input.tabletButton
{
	position: absolute;
	top: 293px;
	left: 349px;
	width: 60px;
	height: 60px;
	background-color: red;
	border: none;
	border-radius: 50%;
	box-shadow:
    inset 2px 2px 4px rgba(255,255,255,0.3),
    inset -2px -2px 4px rgba(0,0,0,0.4);
}

input.tabletCheckbox
{
	appearance: none;
	background-color: white;
	border-radius: 5%;
	cursor: pointer;
	width: 50px;
	height: 50px;
	box-shadow:
    2px 2px 0 #666,
    -2px -2px 0 #fff
}

input.tabletCheckbox:checked
{
	background-color:grey;
	box-shadow:
    inset 2px 2px 4px rgba(0,0,0,0.4),
    inset -2px -2px 4px rgba(255,255,255,0.3);
}

div.footer
{
width: 100%;
margin: auto;
background-color: black;
font-family: candara;
position: fixed;
bottom: 0;
left: 0;
z-index: 9999;
}

h1
{
	font-size: 50px;
	font-style: bold;
}

        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }
        .blinking-text {
            text-align: center;
            margin-top: 20%;
            font-size: 24px;
            color: red;
            animation: blink 1s infinite;
        }
		
		
		/* normal link */
a {
  color: Yellow;
}

/* visited link */
a:visited {
  color: gold;
}
		