@charset "UTF-8";
/*
	A submission for ARV-228 CSS ZENgineer Project
		My Design Title: Spooky Night
		My Name is: Zaide Palacios
		My spin animation solution references "A Robot Name Jimmy"
			– Designed by @guitrasher
			– Development by @jimmyking
			– http://meltmedia.com"
		and my bounce animation timing function is from https://tympanus.net/codrops/css_reference/animation-timing-function/
	 All associated graphics copyright 2021, by me, Zaide Palacios.
	- fence.png is not released and all rights are retained by 
			the designer, Adamy Diaz
 /////  FONT CITATIONS
		All Google Fonts are released under licenses which do not require 
			them to be cited 
 		verdemoderna font borrowed from csszengarden design 214 by Dave Shea
 /////  CSS CITATIONS 
 	This CSS file is released under the Creative Commons License - 
		- http://creativecommons.org/licenses/by-nc-sa/4.0/  /* 
 	License Allows: adaptations and commercial use, but requires share-and-share alike and attribution to Zaide Palacios 
*/

/*	This CSS file accompanies my CSS ZENgineer Project */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Farsan&family=Montserrat+Alternates:wght@400&display=swap');

#css-zen-garden {
  /*	aka body 	*/
  background-image: linear-gradient(indigo, black);
  background-attachment: fixed;
  font-family: "Montserrat Alternates", sans-serif !important;
  color: indigo;
  font-weight: 600;
  margin: 0;
  padding: 0;
  margin-bottom: 100px;
  font-size: 1.1em;
}
#css-zen-garden:after {
  content: '';
  position: fixed;
  left: 0;
  bottom: -155px;
  display: block;
  height: 250px;
  width: 2200px;
  background-color: rgba(0, 0, 0, 0.65);
  background-size: 4%;
  background-repeat: repeat-x;
  background-image: url("tombstone.png");
  overflow: hidden;
  z-index: 999;
}
a, a:link, a:visited, abbr {
  color: orange;
  font-weight: bolder;
}
a:hover, a:active, abbr:hover {
  color: indigo;
}
p::first-letter {
	font-family: "Creepster", sans-serif;
	font-size: 2em;
	font-weight: 100;
	color: orange;
	
}
header {
  background-color: black;
  padding: 25px;
  border-radius: 32% 32% 10px 10px;
  box-shadow: 1px 2px 7px lavender;
  border: 2px solid orange;
  background-image: url("spiderweb.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 25%
}
header::after {
  content: '';
  width: 100px;
  height: 150px;
  display: block;
  background-image: url("spidy.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  position: absolute;
  left: 965px;
  top: 150px;
}
header:hover::after {
  animation: bounce 5s infinite linear;
}
h1, h2, h3 {
  font-family: "Farsan", "Comic Sans", sans-serif;
  font-size: 26px;
  text-align: center;
  line-height: 1.5em;
}
h1 {
  width: 600px;
  margin: auto;
  font-family: 'Creepster', sans-serif;
  color: orange;
  padding: 1px;
  font-size: 50px;
  text-shadow: 1px 2px 3px lavender;
  letter-spacing: 3px;
}
h1:before {
  content: "Spooky Night "attr(br);
  font-size: 100px;
}
h2 {
  width: 650px;
  color: orange;
  font-size: 20px;
  margin: 0 auto;
  padding-bottom: 10px;
}
h3 {
  color: indigo;
  background-color: orange;
  background-image: linear-gradient(to left, darkorange, rgba(230, 230, 250, .7));
  text-align: right;
  padding-right: 30px;
  border-radius: 45% 10px 10px 45%;
  line-height: .9em;
  padding-top: 10px;
}
h3::after {
  content: '';
  width: 100px;
  height: 30px;
  margin-top: -15px;
  display: block;
  background-image: url(bat.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
h3:hover {
  box-shadow: 2px 2px 3px lavender;
  font-weight: 800;
  text-decoration: underline;
}
h3:hover::after {
  animation-name: spin, bounce;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
/*animation*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  25% {
    top: 50px;
    animation-timing-function: ease-in;
  }
  50% {
    top: 65px;
    animation-timing-function: ease-out;
  }
  75% {
    top: 75px;
    animation-timing-function: ease-in;
  }
  to {
    top: 120px;
  }
}
/*	end animation  */
li {
  list-style-image: url(spidy-s.png);
  list-style-type: none;
  list-style-position: inside;
  margin-left: -10px;
}
.page-wrapper {
  background-color: #9467cb;
  width: 800px;
  margin: 10px 350px 50px;
  border-radius: 115px 115px 15px 15px;
  border: 1px solid orange;
  box-shadow: 5px 15px 35px orange;
}
.intro {
  padding: 15px;
}
.preamble, .main {
  padding: 10px;
  width: 600px;
  margin-left: 120px;
}
.summary {
  width: 600px;
  margin: auto;
  margin-left: 120px;
}
.preamble, .supporting, .participation {
  padding: 5px 10px;
  margin-top: 20px;	
}
.particitipation {
  margin-top: 30px;	
}
.explanation {
	margin-top: -20px;
}
.benefits {
  margin-top: -390px;
}
.benefits::before {
  content: '';
  width: 240px;
  height: 400px;
  left: -255px;
  position: relative;
  background-image: url("skeleton.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
 
}
.benefits:hover::before {
  content: '';
  left: -230px;
  background-image: url("skeleton2.png");
}
.requirements {
  margin-top: -370px
}
.requirements::before {
  content: '';
  position: relative;
  width: 240px;
  height: 400px;
  left: 575px;
  background-image: url("skeleton3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  /*backgorund-color: antiquewhite;*/
}
.requirements:hover::before {
  content: '';
  left: 550px;
  background-image: url(skeleton.png);
}
.requirements::after {
  content: '';
  width: 500px;
  height: 200px;
  left: -290px;
  bottom: 100px;
  position: relative;
  display: block;
  background-image: url("ghosty.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.requirements:hover::after {
  background-image: url("ghosty-boo.png");
}
.sidebar {
  padding: 10px;
  background-color: lawngreen;
  border-radius: 15px 5px;
  border: 6px double orange;
  box-shadow: 3px 5px 7px orange;
  width: 300px;
  position: absolute;
  top: 180px;
  left: 120px;
  font-family: inherit;
  font-size: 1em;
  color: darkorange;
}
.sidebar h3:hover {
  box-shadow: 2px 2px 7px rebeccapurple;
}
.sidebar::before {
  content: '';
  width: 210px;
  height: 200px;
  display: block;
  position: absolute;
  left: 75px;
  top: -120px;
  background-image: url("frankie-ws.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-25deg);
}
.sidebar:hover::before {
  background-image: url("frankies-sick.png");
  transform: rotate(-10deg);
}
.sidebar li a:link {
  color: darkorange;
}
.sidebar li a:hover {
  color: rebeccapurple;
}
.wrapper {
  padding: 15px;
}
.design-selection {}
.designer-name {
  display: inline-block;
}
.design-archives {}
.zen-resources {}
/*	=================
|	Stylizing footer area
|	=========================	*/
footer {
  clear: both;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 98px;
  padding: 5px;
  margin-top: -150px;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: center;
  line-height: 4em;
  vertical-align: middle;
  background-image: url(fence.png);
  background-repeat: repeat-x;
  background-size: cover;
  background-color: transparent;
  border-bottom: solid 10px #003600;
  border-radius: 10px;
}
footer a {
  background-color: #E5E5E5;
  background-image: url(headstone.png);
  background-size: cover;
  font-weight: normal;
  margin-right: 15px;
  border-width: 2px;
  border-color: black;
  border-style: solid;
  float: left;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  width: 80px;
  height: 60px;
  padding: 40px 0 0 0;
  margin: 3px 18px;
  border-radius: 50% 50% 0 0;
  color: indigo !important;
  position: relative;
}
footer a:hover, footer a:focus {
  margin-top: -2px;
  border-top-color: indigo;
  border-right-color: lightsalmon;
  border-bottom-color: darkorange;
  border-left-color: indigo;
  border-width: 2px;
  font-style: normal;
  background-color: ghostwhite;
  color: indigo !important;
}
footer a::before {
  display: block;
  position: absolute;
  top: 30px;
  left: 10px;
  font-size: 36px;
  text-indent: 13px;
  /* icomoon.io defaults */
  font-family: 'verdemoderna';
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: .9em;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
footer a.zen-validate-html::before {
  content: "5";
}
footer a.zen-validate-html:hover::before, footer a.zen-validate-html:focus::before {
  content: "%";
}
footer a.zen-validate-css::before {
  content: "3";
}
footer a.zen-validate-css:hover::before, footer a.zen-validate-css:focus::before {
  content: "#";
}
footer a.zen-license::before {
  content: "c";
}
footer a.zen-license:hover::before, footer a.zen-license:focus::before {
  content: "C";
}
footer a.zen-accessibility::before {
  content: "a";
}
footer a.zen-accessibility:hover::before, footer a.zen-accessibility:focus::before {
  content: "A";
}
footer a.zen-github::before {
  content: "g";
}
footer a.zen-github:hover::before, footer a.zen-github:focus::before {
  content: "G";
}
/*	verdemoderna font borrowed from csszengarden design 214 by Dave Shea	*/
@font-face {
  font-family: 'verdemoderna';
  src: url('verdemoderna.woff') format('woff'), url('http://csszengarden.com/214/verdemoderna.svg#verdemoderna') format('svg');
  font-weight: normal;
  font-style: normal;
}
