@charset "UTF-8";
body {
	font-family: "Georgia", Helvetica, sans-serif;
	background-size: cover;
}

/*https://static.wikia.nocookie.net/harrypotter/images/f/f8/Hogwarts_houses.jpg/revision/latest/thumbnail/width/360/height/450?cb=20160813020635*/
.slyth {
	background-image: url("Images/SlytherinBackground.png");
}
.grif {
	background-image: url("Images/gryfindorBackground.png");
}
.huff {
	background-image: url("Images/HufflepuffBackground.jpeg");
}
.raven {
	background-image: url("Images/RevenclawBackground.jpeg");
}

.wait {
	color: Yellow;
	background-color: Black;
	text-align: center;
	font-size: 4.5vw;
}
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: 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)
}
.gap{
	margin-right: 5%;
}
/*https://www.w3schools.com/css/css_dropdowns.asp*/
.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;
}
 

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

h1 {
	text-align: center;
}