*
{
		box-sizing: border-box;
}

@font-face {
  font-family: MJNGai;
  src: url(fonts/MJNgaiPRCMedium.ttf);
}

body 
{
  background-image: url(images/orsunset.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  font-family: MJNGai;
}

h1
{
	color:white;
	text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000,
                 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

img 
{
  max-width: 100%;
  height: auto;
}

p
{
  color:white;
}

ul 
{
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #121212;
  display: flex;
  justify-content: center;
}

ul li a 
{
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover 
{
  background-color: #444444;
}

ul li a.active 
{
  background-color: red;
}

li 
{
  float: left;
}

li a, .dropbtn 
{
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn 
{
  background-color: #EFBF04;
  color: black;
}

li.dropdown 
{
  display: inline-block;
}

.dropdown-content 
{
  display: none;
  position: absolute;
  background-color: #121212;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a 
{
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover 
{
	background-color: #444444;
}

.dropdown:hover .dropdown-content 
{
  display: block;
}

.submenu-parent 
{
  position: relative;
}

.submenu-parent:hover > a
{
  background-color:#EFBF04;
  color: black;
}
.submenu-parent {
  position: relative;
}

.submenu-parent:hover .submenu-child {
  display: flex;
}

.submenu-child {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    flex-direction: column;
}

.site_content {
  background-color: rgb(47 0 0 / 0.5);
  color: white;
  outline: 3px solid black;
}