/* =====================================================
   RESET + BASE TIPOGRÁFICA
===================================================== */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  /* cursor: url('../cursors/g-cursor.cur'), auto; */
}

body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background: url('../imgs/background.png') no-repeat center center fixed;
  background-size: cover;
}

/* =====================================================
   TIPOGRAFÍA
===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: "Arial", sans-serif;
  color: #000000;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: bold;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1em;
}

small {
  font-size: 0.85em;
  color: #666;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: blue;
  text-decoration: none;
  /* cursor: url('../cursors/g-pointer.cur'), pointer; */
}

a:hover {
  text-decoration: underline;
}

/* =====================================================
   LISTAS
===================================================== */

ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

ul {
  list-style: none;
}

/* =====================================================
   FORMULARIOS Y BOTONES
===================================================== */

button {
  font-family: inherit;
  font-size: inherit;
  /* cursor: url('../cursors/g-pointer.cur'), pointer; */
}

input, textarea {
  font-family: inherit;
  font-size: 1em;
}

/* =====================================================
   DETALLES VISUALES
===================================================== */

::selection {
  background: #ccc;
  color: #000;
}

/* =====================================================
   LAYOUT FULLSCREEN (HOME)
===================================================== */

.fullscreen {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* =====================================================
   IMÁGENES BASE (HOME)
===================================================== */

.imgs-container img {
  position: absolute;
}

/* =====================================================
   COMPOSICIÓN HOME
===================================================== */

/* WIP */
.img-wip {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

/* ARROW */
.img-arrow {
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}

/* GOBLIN */
.img-goblin {
  top: 22%;
  left: 10%;
  height: 75%;
  width: auto;
  z-index: 2;
}

/* EXPECT */
.img-expect {
  top: 30%;
  left: 30%;
  width: 20vw;
}

/* ETC */
.img-etc {
  bottom: 6%;
  left: 80%;
  transform: translateX(-50%);
  width: 20vw;
}

/* =====================================================
   MENÚ HOME (composición libre)
===================================================== */

.menu {
  position: absolute;
  top: 39%;
  left: 46%;
  transform: translate(-50%, -50%);
}

.menu button {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu img {
  width: 17vw;
  transition: 0.2s;
}

.menu img:hover {
  transform: scale(1.08);
}

/* POSICIÓN BOTONES */

.btn-blog {
  top: 0vh;
  left: 0vw;
}

.btn-dibujo {
  top: 12vh;
  left: 5vw;
}

.btn-tattoo {
  top: 24vh;
  left: 2.5vw;
}

.btn-video {
  top: 32vh;
  left: 8vw;
}

/* =====================================================
   RESPONSIVE HOME
===================================================== */

@media (max-width: 768px) {

  body {
    font-size: 18px;
  }

  .img-expect,
  .img-etc {
    width: 37vw;
  }

  .img-expect {
    top: 20%;
    left: 24%;
  }

  .img-etc {
    bottom: 10%;
  }

  .menu img {
    width: 33vw;
  }

  .img-wip {
    top: 7%;
  }

  .img-arrow {
    top: 44%;
    transform: rotate(268deg);
    width: 633px;
    left: -68%;
    z-index: -1;
  }

  .img-goblin {
    height: 55vh;
    left: -3%;
    top: 30%;
  }

  .menu {
    top: 28%;
  }

}