* {
  padding: 0;
  margin: 0;

}

.todo {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}


.todo h2, h3 {
    font-size: 1.4rem;
    text-align: center;
}

.loading_wrapper {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.loading-inner-content {
  background: #fff;
  height: 510px;
  width: 5770px; /* items X image-size( 240px + space of margin ) */
}
.box {
  position: relative;
  width: 280px; /* image-size */
  height: 500px;
  margin: 20px 20px 0 0;
  float: left;
  overflow: hidden;
}
.box:first-child {
  margin-left: 20px;
}
.box:last-child {
  margin-right: 20px;
}
.box-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.box-content > img {
  width: 100%;
}
.masinfo {
  text-align: center;
  color: white;
  font-size: 30px;
}

.masinfo a {
  text-decoration: none;
  color: white;
}

.masinfo a:hover {
  color: gold;
  font-size: 1.1em;
}

.explore-button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.explore-button:hover {
    background-color: #003d82;
}
