body {
  font:  'Lucida Grande', Tahoma, Verdana, sans-serif;
  color: #404040;
  background: url('images/unicode_background.jpg');
background-repeat: no-repeat;
  background-position: center top;
}





p{
font-face: arial;
  text-align: center;
  font-size: 20px;
  color: blue;
  padding: 10px 10px 10px 10px;
}

.flip > .front{
	position:absolute;
	transform: perspective( 600px ) rotateY( 0deg );
	background:#e7e7e7; width:240px; height:270px; border-radius: 20px;border-color: red;
	backface-visibility: hidden;
	transition: transform .5s linear 0s;
}
.flip > .back{
	position:absolute;
	transform: perspective( 600px ) rotateX( 0deg );
	background: skyblue; width:240px; height:270px; border-radius: 20px;
	backface-visibility: hidden;
	transition: transform .5s linear 0s;
}
.flip:hover > .front{
	transform: perspective( 600px ) rotateY( 90deg );
}
.flip:hover > .back{
	transform: perspective( 600px ) rotateY( 0deg );
}
  



span1 {
  display: block;
  position: relative;
  margin: 0 auto;
  top: -40px;
  height: 200px;
  width: 200px;
  background: center center no-repeat, white;
  border-radius: 50%;
  box-shadow: 1px 1px 5px rgba(5,0,0,10);
}

button {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 5px 23px;
  font-size: 48px;
  font-family: "Bitter",serif;
  line-height: 1.8;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
cursor : pointer;
}

section.press button {
width:500px;
height:120px;
  color: #fff;
  background-color: #6496c8;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px #27496d;
}
section.press button:hover,
section.press button.hover {
  background-color: #417cb8
}

section.press button:active,
section.press button.active {
  background-color: #417cb8;
  box-shadow: 0 5px #27496d;
  transform: translateY(5px);
}


section.press2 button {
width:500px;
height:120px;
font-size:40px;
  color: #fff;
  background-color: #e60073;
  border: none;
  border-radius: 25px;
  box-shadow: 0 10px #3333ff;
}
section.press2 button:hover,
section.press2 button.hover {
  background-color:  #800040;
}

section.press2 button:active,
section.press2 button.active {
  background-color: #ff1aff;
  box-shadow: 0 5px #27496d;
  transform: translateY(5px);
}




.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    overflow:auto;
  
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    width: 900px;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}
.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}
.close:hover {
    background: #00d9ff;
}

a {
  color: #333;
  text-decoration: none;
}

textarea {
    resize: none;
}

time {
align:center;
color:blue;
}