/* Preset dasar */
#myBtn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 999;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}


/* Dropdown Button */
.dropbtn {
  background-color: #da9f01;
  color: black;
  padding: 10px;
  font-size: 10px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  text-align: ;: center;
}

/* 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;}



.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}



.game-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.game-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1px;
    width: calc(20% - 20px);
    text-align: center;
}



/* Create two equal columns that floats next to each other */
.column {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  float: left;
  width: 80%;
  padding: 10px;
  height: 320px;
  text-align: justify;
  color: #000;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  color: #000;
}

.kentung-icon {
    position: absolute;
    background-image: url(https://seo-kentung.pages.dev/img/icon-logo.png);
    background-size: cover;
    width: 29px;
    height: 26px;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -14px
}



