/* Main stylesheet for the website */

body {
  background-color: AliceBlue;
	color: black;
	font-family: Verdana, sans-serif;
	background-image: url('SkyLoop.png');
	background-size: cover; /* Adjusts image to cover the entire body */
	background-repeat: repeat;
	background-position: center;
}

h1{
  font-family: BearDays;
  /*text-shadow: 2px 2px 5px blue;*/
  font-size: 50px;
  color: white;
  -webkit-text-stroke: 6px black;
  paint-order: stroke fill; /*adds the stroke behind the text instead of on top of it*/
}

h2{
  font-family: BearDays;
  font-size: 30px;
  color: white;
  -webkit-text-stroke: 5px black;
  paint-order: stroke fill;
}

h3{
  font-family: BearDays;
  font-size: 30px;
  color: black;
  margin-left: 10px;
}

p {
  font-family: Childhood; 
  font-size: 28px;
  word-spacing: 5px;
  margin-left: 25px;
  margin-right: 25px;
  /*background-color: white;*/
}

p2{
  font-family: Childhood;
  font-size: 28px;
  color: black;
  margin-left: 25px;
  margin-right: 100px;
}

li{
  font-family: Childhood; 
  font-size: 28px;
  word-spacing: 5px;
  margin-left: 25px;
  /*background-color: white;*/
}

/*Fonts;*/

@font-face {
  font-family: MissDi; /* set name */
  src: url(Fonts/HelloMissDi.otf); /* url of the font */
}

@font-face{
  font-family: BearDays;
  src: url(Fonts/BearDays.otf);
}

@font-face{
  font-family: Childhood;
  src: url(Fonts/ChildHood.otf);
}

/*Container Properties*/

#container{
  border: black 5px solid;
  background-color: white;
  border-radius: 5px;
  align-items: center;
}

#container2{
  border: black 5px solid;
  background-color: lightcyan;
  border-radius: 5px;
  align-items: center;
}

#container3{
  border: black 5px solid;
  background-color: lightpink;
  border-radius: 5px;
  margin-right: 800px;
}

#container4{
  border: black 5px solid;
  background-color: lightyellow;
  border-radius: 5px;
  margin-right: 400px;
}


#details{
  margin-right: 100px;
  background-color:green;
}

/*The following code below relates to any buttons on the website*/

.buttons{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.button{
	appearance: none;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;

  font-family: Childhood;
	font-size: 1.8rem;
	font-weight: 300;

	padding: 1rem 1.5rem;
	border-radius: 0.75em;
	background-color: green;
	color: white;
	margin-right: 10px;
}

.center { /* centers an image */
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#bubble{
	position: relative;
	overflow: hidden; /*Hides the bubble effect within the boundaries of the button*/
}

#bubble span{
	position: relative;
	z-index: 2;
}

#bubble:after{
	content: ''; /*Creates a circle*/
	position: absolute;
	/*Positions circle in the center*/
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	width: 0;
	height: 0;
	background-color: darkgreen;
	border-radius: 999px;
	transition: 0.5s ease-out;
}

#bubble:hover::after{/**/
	width: 200%;
	padding-top: 200%;
}