@charset "utf-8";
/* CSS Document */
* {box-sizing: border-box}
body {padding:80px; margin-top: 23%; margin-left: 4%; overflow:scroll; font-family: Arial, Helvetica, sans-serif;}

/* background image */
html { 
	background: url("../wd/camouflage-lines-abstract-background-1l.jpg") no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
} 

.textbox{
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  font-size: 45px;
  border: 10px solid #f1f1f1;
  position: absolute;
  top: 25%;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 350px;
  padding: 20px;
  margin: 20px;
  text-align: right;
}


.textcontainer{
	margin: 50%;
	align-content: center;
}


.navbar {
  width: 100%;
  background-color: transparent;
  overflow: auto;
  
}

.navbar a {
  float: left;
  padding: 30px;
  color: white;
  text-decoration: none;
  font-size: 25px;
  width: 33.4%; /* Three links of equal widths */
  text-align: center;
  border: solid 0.1em #e1e1e1; 
  border-radius: 1em; 
}

.navbar a:hover {
  background-color: #000;
}
	/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 25px;
  border:  solid 0.1em #e1e1e1;
  border-radius: 1em;
  outline: none;
  color: white;
  padding: 30px 114px;
  text-align: center;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0 10px; /* Important for vertical align on mobile phones */
}

.dropbtn:hover {
  background-color: #000;
  color: white;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
	margin: 0 10px;
  display: none;
  position: absolute;
  background-color: transparent;
  width: 320px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  	float: none;
	background-color: rgba(0,0,0,0.6);
  	color: white;
	width: auto;
  	padding: 10px 90px;
  	text-decoration: none;
  	display: block;
  	text-align: center;
	font-size: 15px
	}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
 	background-color: #ddd;
	color: black;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;  
  }
}
