body, html {
	padding: 0;
	margin: 0;
	background: #FFF;
	font-size: 12px;
	font-family: Calibri, sans-serif;
}

.page {
	padding: 12px;
}

.page h1:first-child {
	margin-top: 0;
}

img {
	max-width: 100%;
}

a {
	color: #ff70e1;
	text-decoration: none;
	letter-spacing: 1px;
	transition-duration: 0.5s;
}

a:hover {
  letter-spacing: 3px; 
  text-decoration: underline;
	animation: hoverboard 0.5s;
}

@keyframes hoverboard{
  from {letter-spacing: 1px;}
  to {letter-spacing: 3px; text-decoration: underline;}
}

.hero {
	width: 400px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	transition: 0.5s;
}

.hero:hover {
    animation: buttonCtaBounce 0.5s;
}

@keyframes buttonCtaBounce {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scaleX(1.2) scaleY(0.8);
    }
    50% {
        transform: scaleX(0.8) scaleY(1.2);
    }
    75% {
        transform: scaleX(1.1) scaleY(1.1);
    }
}

iframe {
	border: 3px double #000;
}

.content {
	height: 300px;
	width: 500px;
	position: absolute;
	bottom: 220px;
	left: 260px;
}

.blinkies {
	border: 3px double #000;
	width: 300px;
	height: 100px;
	position: absolute;
	bottom: 60px;
	left: 560px;
	overflow: auto;
}

.title {
	color: #ffa6ec;
	font-size: 36px;
	letter-spacing: 5px;
	position: absolute;
	bottom: 530px;
	left: 260px;
}

.yeardrop {
  position: relative;
  display: inline-block;
}

summary {
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: bold;
}

details {
  padding-left: 4px;
}

h1, h2, h3, h4 {
	font-size: 12px;
	text-transform: all;
	letter-spacing: 0.5px;
}

h1, h4 {
	background: #c1ffa6;
	border-top: 2px solid #ffa6ec;
	border-bottom: 2px solid #ffa6ec;
	padding-left: 4px;
}

h2, h5 {
	border-left: 2px solid #ffa6ec;
	padding-left: 4px;
}

#mobile {
  display: none;
}

@media (max-width: 800px) {
  .hero {
    display: none;
  }
  body {
    display: flex;
    flex-direction: column;
  }
  .content, .blinkies, .title {
    width: 100%;
    position: relative;
    margin: 5px;
    bottom: 0;
    left: 0;
  }
}