@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap');

* {
  padding: 0;
  margin: 0;

}

body {
  height: 100vh;
  background-color: #000;
	font-family: "Poppins", Verdana, Times;
	font-size: 0.9em;
	font-weight: 500;
	font-style: normal;
	margin: 0;
}



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

h1 {
  text-align: center;
  color: white;
  font-size: 34px;
  margin-top: 20px;

}

h2 {
  text-align: center;
  color: red;

}

h3 {
  text-align: center;
  color: DodgerBlue;

}


.pieinferior {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.loading_wrapper {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.loading-inner-content {
  background: #fff;
  height: 510px;
  width: 5470px; /* 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;
}
