/*Whole Code*/

.markSize {
  width: 13%;
  position: fixed;
}

/*Background*/

.cuerpo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cuerpo .esi {
  top: 0;
  left: 0;
}

.cuerpo .eii {
  bottom: 0;
  left: 0;
}

.cuerpo .eid {
  bottom: 0;
  right: 0;
}

.cuerpo .esd {
  top: 0;
  right: 0;
}

.cuerpo .mitad {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cuerpo .mitad .principal {
  width: 850px;
  height: 760px;
  min-height: 760px;
  margin-top: 0px;
  background-image: url("../img/inicio/main.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}

.cuerpo .mitad .principal .contenido {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cuerpo .mitad .principal .contenido .bienvenida {
  width: 600px;
}

.cuerpo .mitad .principal .contenido button {
  width: 200px;
  height: 60px;
  margin-top: 80px;
  margin-bottom: 90px;
  border-radius: 30px;
  box-shadow: 0px 0px 4px #d3d3d3;
  font-family: "Yanone Regular";
  font-size: 25px;
  border-style: none;
  transition: 0.5s ease all;
}

.cuerpo .mitad .principal .contenido button:hover {
  background: rgb(0, 130, 255);
  background: radial-gradient(
    circle,
    rgba(0, 130, 255, 1) 25%,
    rgba(0, 174, 255, 0.9359944661458334) 86%
  );
  color: white;
  box-shadow: 0px 0px 20px 0.4px #0099ff;
  cursor: pointer;
  transition: 0.5s ease all;
}

.cuerpo .mitad .logo {
  display: grid;
  place-items: center;
}
