body,
html {
	height: 100%;
	padding: 0;
	font-family: 'arial', sans-serif;
	background: #dddd22;
}

body {
max-width: 100%;

}

h1 {
	font-size: 24px;
	margin: 10px 0 0 0;
	font-weight: bold;
	color: #666666;
}

h2 {
	font-size: 18px;
	margin: 10px 0 0 0;
	font-weight: bold;
	color: #666666;
}
p {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #333333;
}

a {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #dd2222;
}

li {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
}

ph_logo
{
    position: relative
    vertical-align: middle;
}


img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



@keyframes fadeIn { 
  from { opacity: 0; } 
}

.frontdot {
  height: 36px;
  width: 36px;
  margin-left:18px;
  margin-top:18px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  z-index: 2;
}

.fadingfrontdot {
  height: 36px;
  width: 36px;
  margin-left:18px;
  margin-top:18px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: fadeIn 1s infinite alternate;
  position: relative;
  z-index: 2;
}

.backdot {
  height: 72px;
  width: 72px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity:0.25;
  animation: fadeIn 1s infinite alternate;
  position: absolute;
  z-index: 1;
}

.hotspot{
	margin; auto;
}

span a {
	font-size: 18px;
	color: #cccccc;
	text-decoration: none;
	margin: 0 10px;
	transition: all 0.4s ease-in-out;
	&:hover {
		color: #ffffff;
	}
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.avatar {
	width: 150px;
	height: 150px;
	box-sizing: border-box;
	border: 5px white solid;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: auto; }
}

.content {
	width: 100%;
	max-width: 600px;
	padding: 20px 40px;
	box-sizing: border-box;
	text-align: center;
}

.suppoprt-me {
	display: inline-block;
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 20vw;
	max-width: 250px;
	min-width: 200px;
	z-index: 9;
	img {
		width: 100%;
		height: auto;
	}
}