@font-face {
	font-family: "CraftyGirls";
	src: url("fonts/CraftyGirls.ttf");
}

@keyframes strip {
  from {transform:translateX(100%);}
  to {transform:translateX(-100%);}
}

* {
	cursor: url(assets/trianglemouth.jpg), auto;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: "Comic Sans MS", "Comic Sans", cursive;
	background-image: url(assets/bg.gif);
	background-repeat: repeat;
	background-size: 12.5vw;
	color: #b800b8;
}

img {
	transform: rotateX(0);
}

#header {
	text-align: center;
    font-size: 50px;
    font-weight: 600;
	padding: 20px;
	color: #670067;
	background: linear-gradient(to bottom, #8681a9, #fddec9);
	position: relative;
	font-family: "CraftyGirls", "Comic Sans MS", "Comic Sans", cursive;
}
#header::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat-x;
  height: 10px;
  background-size: 20px 20px;
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, #670067 13px);
}
#header::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat-x;
  height: 15px;
  background-size: 40px 20px;
  background-image: radial-gradient(circle at 10px 15px, #670067 12px, transparent 13px);
}

#header .logos {
	height: 160px;
}

#header .logos img {
	max-height: 160px;
	max-width: 15%;
}

#header .logos .flip {
	transform: scaleX(-1);
}

#coolstrip {
	width: 100%;
	padding-bottom: 5px;
    background-color: #670067;
    overflow: hidden;
	text-align: left;
}

#coolstrip div {
	width: 100%;
	white-space: nowrap;
	animation: strip 30s linear infinite;
	color: #faaf19;
}

#main {
    width: 60%;
    background-color: #e4cfd9db;
    margin: 30px auto;
    border: 7px #670067 dotted;
    border-radius: 10px;
	min-width: 800px;
	padding: 50px;
}

#main p {
	width: 80%;
    margin: 0 auto;
}

#main .imagefield {
	margin: 30px;
    text-align: center;
}

#main .imagefield img {
	margin: 30px;
	max-width: 60%;
}

#pat {
	cursor: url(assets/pat.png), auto;
}

#main .birthdayfield {
	text-align: center;
    border: 5px outset;
    width: 80%;
    margin: 40px auto;
    background-color: #00ffff26;
	padding: 10px;
}

#main .birthdayfield img {
	height: 300px;
	width: auto;
}

#main .birthdayfield p {
	color: blue;
    font-weight: 600;
    font-size: 40px;
    width: 60%;
}

#footer {
	height: 50px;
    background-color: #d8cbdf;
    margin-top: 130px;
    border-top: #670067 dashed 3px;
    text-align: center;
	padding-top: 10px;
}

#player {
	background-color: #ff00ff;
	position:fixed;
	right:0;
	bottom:0;
	padding: 20px;
}