@charset "UTF-8";

.tallImg{
	width: 45%;
	border-radius: 10px;
	/*https://www.w3schools.com/cssref/css3_pr_box-shadow.php*/
	box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
}
.shortImg{
	width: 48%;
	border-radius: 10px;
	/*https://www.w3schools.com/cssref/css3_pr_box-shadow.php*/
	box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
}	

a {
	color: rgb(50,50,130)
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: rgb(50,50,80,0.8);
  display: flex;
  justify-content: center;
  position: sticky;
  z-index: 998;
  
  /*Use across all pages https://www.w3schools.com/css/css_navbar.asp*/
  
  top: 0;
  border-radius: 50px;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size:1.7vw;
  transition: 0.3s;
}

ul li a:hover {
  background-color: rgb(50,50,50);
}
ul li a.active{
	background-color: rgb(0,0,0)
}

body {
	font-family: "Georgia", Helvetica, sans-serif;
	background-image: url("Images/background.jpg");
	/*https://www.amazon.com/MIGHTYPRINT-Harry-Potter-Officially-Collectible/dp/B0DJWHQ4VW?th=1*/
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	margin: 0;
	padding: 0;
}
h1 {
	color: White;
	background-color: rgb(130,130,255,0.3);
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	border-radius: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	font-size: 11.5vw;
	
}
p {
	color: White;
	margin: 10px;
	font-size:1.8vw;
	line-height:2;
}
.left {
	margin-left: 10px;
	order: 2;
}
.right {
	margin-right: 10px;
	order: 1;
}
.container {
	border-radius: 25px;
	width: 95%;
	display: flex;
	flex-wrap: wrap;
	border-style:solid;
	border-color: white;
	border-width:2px;
	padding: 40px;
	margin-top: 30px;
	margin-bottom: 30px;
	margin: auto;
	align-items: center;
	justify-content: space-between;
	background-color: rgba(55, 55, 70, 0.8);
	/*w3schools*/
}
.left-text-Background {
	border-radius: 10px;
	background-color: rgba(40, 40, 50, 0.7);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left:10px;
	padding-right:5px;
	width: 45%;
	order: 2;
}
.right-text-Background {
	border-radius: 10px;
	background-color: rgba(40, 40, 50, 0.7);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left:5px;
	padding-right:10px;
	width: 45%;
	order: 1;
	
}
.gap{
	margin-right: 5%;
}

.dropdown{
  position: relative;
  color: White;
  font-size:1.7vw;
  padding-top: 15px
}

.dropdown-content{
  display: none;
  position: absolute;
  background-color: rgb(50,50,80,0.8);
  min-width: 130px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  padding: 8px 12px;
}
  /*https://www.w3schools.com/css/css_dropdowns.asp*/

.dropdown:hover .dropdown-content{
  display: block;
}
.dropdown-content a{
	color: white;
	text-decoration: none;
	display: block;
}


/*https://www.w3schools.com/howto/howto_js_slideshow.asps*/
.slideshow-container{
	position: relative;
	max-width: 45%;
}

.familySlides{
	display: none;
	width: 100%;
}
.dogSlides {
	display: none;
	width: 100%;
}
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 30px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/*https://www.w3schools.com/w3css/w3css_animate.asp*/
#introVid {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: fixed;
	z-index: 1000;
	opacity: 1;
	top: 0;
	transition: opacity 1s ease;
}


#allContent {
	opacity: 0;
	transition: opacity 1s ease;
	z-index: 2;
	position: relative;
	margin-left: 3%;
	margin-right: 3%;
}

iframe {
	width: 45%;
}
a {
	color: rgb(200, 200, 320)
}
