* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

#title-home {
  color: whitesmoke;
}

body {
  width: 100%;
  background: rgb(54, 54, 54);
  min-height: 100vh;
}

#mulai {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #262626;
  -webkit-box-shadow: 0px 11px 17px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 11px 17px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 10px;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  max-width: 900px;
}

#login {
  width: 95%;
  display: flex;
  justify-content: right;
  position: absolute;
  top: 10px;
}

#login button {
  width: 100px;
  height: 30px;
}

#profile {
  font-size: 40px;
  color: white;
  cursor: pointer;
  margin-top: 10px;
}

#pencarian {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.random img {
  width: 40px;
  cursor: pointer;
}

#game {
  display: none;
}

#home {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#board {
  text-align: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  display: flex;
  width: 60%;
  border-radius: 0 0 20px 20px;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
  font-family: "Montserrat";
  padding: 10px;
  background-color: #262626;
  -webkit-box-shadow: 0px 11px 17px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 11px 17px 12px rgba(0, 0, 0, 0.15);
}

#board div {
  margin: 5px;
}

#loading {
  display: none;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  font-size: 50px;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.63);
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #ffffff #ffffff00;
  animation: l1 1s infinite;
}
@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}

#action {
  display: none;
}

#refresh {
  display: block;
  font-size: 20px;
  margin: 10px;
  color: white;
  padding: 20px;
  border-radius: 100%;
  background-color: black;
  cursor: pointer;
}

h1 {
  margin: 30px 30px 10px 30px;
  text-align: center;
}

#title-desc {
  color: white;
  margin: 0px 30px 30px 30px;
  text-align: center;
  font-size: 11pt;
}
input {
  outline: none;
  margin: 10px;
  width: 100%;
  height: 30px;
  text-align: left;
  border: none;
  color: white;
  background-color: #3d3d3d;
  padding: 20px;
  border-radius: 20px;
}

#game {
  width: 100%;
  height: 100vh;
  display: none;
  margin-left: auto;
  margin-right: auto;
}

#score {
  font-size: 26px;
  font-weight: bold;
}

#path {
  font-weight: 600;
}

#html {
  padding-top: 200px;
  padding: 200px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  overflow: hidden;
}

#html section {
  width: 95%;
}

#html section a {
  overflow-wrap: anywhere;
}

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

button {
  border: none;
  width: 100%;
  max-width: 500px;
  height: 40px;
  background-color: black;
  border-radius: 10px;
  margin: 10px;
  color: white;
  cursor: pointer;
}

button:hover {
  border: white solid 1px;

  background: #4d4d4d;
  background: -webkit-linear-gradient(
    90deg,
    rgba(77, 77, 77, 1) 2%,
    rgba(16, 20, 24, 1) 100%
  );
  background: -moz-linear-gradient(
    90deg,
    rgba(77, 77, 77, 1) 2%,
    rgba(16, 20, 24, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(77, 77, 77, 1) 2%,
    rgba(16, 20, 24, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#4D4D4D",
  endColorstr="#101418",
  GradientType=1
);

  border-radius: 10px;
  color: white;
}

.start,
.end {
  position: relative;
  text-align: left;
  margin: 10px;
  width: 350px;
  display: flex;
  justify-content: center;
}

#result-start,
#result-end {
  width: 100%;
  list-style-type: none;
  position: absolute;
  display: block;
  z-index: 99999;
  text-align: left;
  background-color: aliceblue;
  margin-top: 60px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
}

li {
  width: 100%;
  margin: 5px;
  padding: 7px 0;
  padding-left: 5px;
  font-size: 12px;
  font-weight: 600;
}

body {
  overflow-x: hidden;
}

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

table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}

pre {
  overflow-x: auto;
}
