	@media only screen and (min-width : 721px){
#watchman{
	color : white ;
	background-color:navy ;
	padding : 2.5% ;
	border : 2px solid blue ;
	text-align : center ;
}
.watchman1{
	font-size : 250% ;
	font-weight : bold ;
}
.watchman2{
	 font-weight : bold ;
	 font-size : 150% ;
	 display : block ;
	
}
#poja{
	display : none ;
}
	}

	@media only screen and (max-width : 720.9px){
#watchman{
	color : white ;
	background-color:navy ;
	padding : 2.5% ;
	border : 2px solid blue ;
	text-align : center ;
}
.watchman1{
	font-size : 220% ;
	font-weight : bold ;
}
.watchman2{
	 font-weight : bold ;
	 font-size : 100% ;
	 display : block ;
	
}
#poja{
	width : 100%;
	background-color : lightgrey ;
	padding : 8px;
	min-height : 30px ;
	margin-bottom : 0 ;
}

/* Dropdown Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 1px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius : 25%;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  float : left ;
  margin-right : 10%;
  margin-left : 2%;
  z-index : 10 ;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

	}