body {
    font-family: "Verdana", "Verdana", monospace;
}
//===== DropDownMenu =====
 /* Dropdown Button */
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 11px;
  border: none;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: absolute;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  font-size: 11px;
  line-height: 0.5;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 2;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: blue;
  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 on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}
//===== DropDownMenu =====

//===== TextOverImage =====
 /* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}
/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}
/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}
/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}
/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}
/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} 
/* Button Mulai */
.btn-mulai {
  position: absolute;
  top: 60%;
  left: 75%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  background-color: lightblue;
} 
/* Top Menu 1 */
.topmenu1 {
  position: absolute;
  display: block;
  top: 200px;
  left: 50%;
  transform: translate(-50%, -50%);
} 
/* Top Menu 2 */
.topmenu2 {
  position: absolute;
  display: block;
  top: 280px;
  left: 50%;
  transform: translate(-50%, -50%);
} 
/* Make the image responsive */
.container img {
  width: 100%;
  height: auto;
}
/* Style the button and place it in the middle of the container/image */
.container .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #555;
  color: lightblue;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.container .btn:hover {
  background-color: blue;
} 
//===== TextOverImage =====

</style>