@charset "UTF-8";
body {
	background-image: url("Images/gryfindorBackground.png");
	/*Created using canvas and https://static.wikia.nocookie.net/harrypotter/images/f/f8/Hogwarts_houses.jpg/revision/latest/thumbnail/width/360/height/450?cb=20160813020635*/
	background-size: contain;
}

.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(340,60,60)
}

/*https://www.w3schools.com/css/css_navbar.asp*/

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: rgba(120, 70, 70, 0.6);
  display: flex;
  justify-content: center;
  z-index: 1000;
  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)
}
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: 13.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: rgba(120, 70, 70, 0.4);
	border-width:2px;
	padding: 40px;
	margin-top: 30px;
	margin-bottom: 30px;
	margin: auto;
	align-items: center;
	justify-content: space-between;
	background-color: rgba(120, 70, 70, 0.4);
	/*w3schools*/
}
.left-text-Background {
	border-radius: 10px;
	background-color: rgba(90, 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(90, 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: 12px 16px;
}
  /*https://www.w3schools.com/css/css_dropdowns.asp*/

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

h2 {
	font-size: 4.5vw;
	color: White;
}
