@font-face {
  font-family: 'VG5000';
  src:    url('./fonts/VG5000-Regular_web.eot');
  src:    url('./fonts/VG5000-Regular_web.eot?#iefix') format('embedded-opentype'),
          url('./fonts/VG5000-Regular_web.woff') format('woff'),
          url('./fonts/VG5000-Regular_web.woff2') format('woff2'),
          url('./fonts/VG5000-Regular_web.ttf') format('truetype'),
          url('./fonts/VG5000-Regular_web.svg#svgFontName') format('svg');
  font-weight: normal;
  font-style: normal;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  cursor: url('./../images/cursor-svg.svg'), auto;
  font-family: 'VG5000';
  font-size: 20px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.poem {
  display: flex;
  flex-direction: column;
  padding: 30px;
  font-style: italic;
}

.container {
  background-color: pink;
  min-height: 100vh;
  padding: 30px;
}

#text-tab {
  position: absolute;
  z-index: 1;
  bottom: 200px;
  left: 750px;
}

.text-container {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 10px 10px;
  border: 2px solid black;
  max-width: 500px;
  padding: 10px;
}

#description-tab {
  position: absolute;
  z-index: 1;
  bottom: 320px;
  left: 80px;
}

#tab-header {
  padding: 5px;
  cursor: move;
  width: 50%;
  background: black;
  color: white;
  border-radius: 10px 10px 0 0;
}

#image-tab {
  position: absolute;
  z-index: 1;
  top: 60px;
  left: 500px;
}

.img-container {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 10px 10px;
  border: 2px solid black;
  max-width: 500px;
}

.image {
  max-width: 300px;
  margin: 10px;
}

.btn-grid {
  display: flex;
  flex-direction: column;
}

.subtitle {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 10px;
  font-size: 30px;
  font-family: 'Roboto';
  color: black;
}

.texto {
  position: absolute;
  z-index: 0;
  bottom: 70px;
  left: 0;
  margin: 0;
}

.close {
  cursor: pointer;
}

.closed {
  display: none;
}

.link-opened,
.link-closed {
  font-size: 150px;
  color: blue;
  text-decoration: underline;
  background: none;
  border: none;
	outline: inherit;
  cursor: url('./../images/cursor-svg.svg'), auto;
}

.link-opened {
  text-decoration: none;
  color: black;
}

#counter {
  background: black;
	color: white;
}

.lang,
.btn {
  font-family: 'VG5000';
  font-size: 24px;
  background: yellow;
	color: black;
	border: none;
	padding: 0;
	font: inherit;
	outline: inherit;
  cursor: url('./../images/cursor-svg.svg'), auto;
  text-decoration: underline;
}

.lang {
  background: none;
}

.lang:hover,
.link-closed:hover
.btn:hover {
  cursor: url('./../images/cursor-svg.svg'), auto;
  font-style: italic;
}


@media (max-width: 700px) {
  body {
    font-size: 15px;
  }
  #tab-header {
    width: 35%;
  }

  #description-tab {
    bottom: 10%;
    right: 10%;
  }

  #text-tab {
    top: 8%;
    left: 10%;
    right: 10%;
  }

  #image-tab {
    top: 30%;
    left: 10%;
  }

  .image {
    max-width: 90%;
  } 

  .img-container {
    max-width: 30%;
    max-height: 30%;
  }

  .img-container {
    max-width: 60%;
    max-height: 60%;
  }

  .texto {
    display:flex;
    flex-direction: column;
  }

  .link-opened,
  .link-closed {
    font-size: 130px;
  }

  .subtitle {
    font-size: 20px;
  }
}