* {
  color: #333;
  font-family: 'Ubuntu', sans-serif;
}

body {
  color: #333;
  font-family: 'Ubuntu', sans-serif;
}

.background_image {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;

  z-index: -1;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
  .background_image {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

.name_block {
  position: absolute;
  /* margin: auto; */
  left: 50%;
  top: 50%;
  margin-top: -100px;
  margin-left: -100px;

  height: 200px;
  width: 200px;
  
  text-align: center;
}

.logo {
  margin-top: 35px;
}

.working {
  font-size: 22px;

  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  margin-top: 140px;
  margin-left: -140px;

  /* Con frase: Work in progress... */
  /* margin-top: 140px;
  margin-left: -90px; */
}

.shop {
  font-size: 14px;
  font-weight: bold;

  position: absolute;
  margin: auto;
  left: 50%;
  bottom: 50px;
  margin-top: 300px;
  margin-left: -40px;
}

.icon_svg_div {
  position: absolute;
  right: 70px;
  bottom: 50px;
  width: 50px;
}

@media (max-width: 768px) or (min-resolution:326dpi) {
  .icon_svg_div {
    position: absolute;
    right: 30px;
    bottom: 25px;
    width: 30px;
  }
}

.icon_svg {
  stroke:#3C3C3B;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  fill: transparent;
  
  stroke-dasharray: 150 400;
  stroke-dashoffset: 0;
  -webkit-animation: nlogo 4s linear alternate infinite;
  animation: nlogo 3s linear alternate infinite;
}

@-webkit-keyframes nlogo {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes nlogo {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}
