* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

:focus {
  outline: none;
}

::-moz-selection {
  color: #fff;
  background: #999;
}

::-moz-selection,
::selection {
  color: #fff;
  background: #999;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

textarea {
  resize: none;
}

::-webkit-input-placeholder {
  color: #ffffff;
}

:-moz-placeholder {
  color: #ffffff;
}

::-moz-placeholder {
  color: #ffffff;
}

:-ms-input-placeholder {
  color: #ffffff;
}

input,
select {
  vertical-align: middle;
}

img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
}

html,
body {
  accent-color: #bbaa76;
  color: black;
  font-family: "Sintony", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 980px) {
  html,
body {
    font-size: 14px;
  }
}

h1 {
  font-size: inherit;
}

p {
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

small,
.text-small {
  display: block;
  font-size: 0.8rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.font-2 {
  font-family: "Alegreya", serif;
}

a {
  color: black;
}
a:hover {
  color: #eee9dc;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-white {
  color: #eee9dc;
}

.text-primary {
  color: #bbaa76;
}

.text-secondary {
  color: #99864c;
}

.text-terciary {
  color: #665932;
}

.bg-primary {
  background-color: #bbaa76;
}

.bg-secondary {
  background-color: #99864c;
}

.bg-terciary {
  background-color: #665932;
}

.bg-select {
  background-color: #860025;
}

.p-1 {
  padding: 0 2rem;
}

.p-2 {
  padding: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.mb-0 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100vh;
}

/* Decoration */
.border-top {
  border-top: 1px solid #665932;
}

.border-bottom {
  border-bottom: 1px solid #665932;
}

.hide {
  display: none;
}

.inline {
  display: inline-block;
}

.nodesktop {
  display: none;
}

@media (max-width: 980px) {
  .nodesktop {
    display: block;
  }
  .p-1 {
    padding: 0;
  }
  .p-2 {
    padding: 1rem;
  }
  .pt-2 {
    padding-top: 1rem;
  }
  .pl-2 {
    padding-left: 0;
  }
  .pr-2 {
    padding-right: 1rem;
  }
}
header {
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 3rem 2rem;
  position: fixed;
  width: 300px;
  z-index: 2000;
}
@media (max-width: 980px) {
  header {
    height: auto;
    padding-bottom: 1rem;
    width: 100%;
  }
}

main {
  left: calc(300px - 2rem);
  max-width: 1080px;
  padding: 3rem 2rem;
  position: absolute;
  width: calc(100% - 300px);
  min-height: calc(100vh - 94px);
}
@media (max-width: 980px) {
  main {
    left: 0;
    width: 100%;
    margin-top: 40px;
  }
}

.cards-container {
  grid-gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .cards-container {
    justify-content: space-between;
  }
}

.cards-container-colecciones {
  grid-gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .cards-container-colecciones {
    justify-content: space-between;
  }
}

.main-container {
  grid-gap: 2rem;
  grid-template-columns: 25% 75%;
}
@media (max-width: 980px) {
  .main-container {
    grid-gap: 0;
    grid-template-columns: 1fr;
  }
}

.poemas-container {
  grid-gap: 2rem;
  grid-template-columns: 7fr 3fr 2fr;
}
@media (max-width: 980px) {
  .poemas-container {
    grid-template-columns: 1fr;
  }
}

.bio-container {
  grid-gap: 2rem;
  grid-template-columns: 4fr 6fr;
}
@media (max-width: 980px) {
  .bio-container {
    grid-template-columns: 1fr;
  }
}

.articulos-container {
  grid-template-columns: 7fr 3fr;
}
@media (max-width: 980px) {
  .articulos-container {
    grid-template-columns: 1fr;
  }
}

.grid {
  display: grid;
}

.grid-centered {
  place-items: center;
}

.flex {
  display: flex;
}

.flex-list {
  flex-wrap: wrap;
  justify-content: space-between;
}

#nav-menu {
  cursor: pointer;
  display: none;
  position: absolute;
  right: 0rem;
  top: 1.7rem;
  width: 30px;
  z-index: 3000;
}
@media (max-width: 980px) {
  #nav-menu {
    display: block;
  }
}

#nav-menu > span {
  background-color: #665932;
  border-radius: 9999px;
  display: block;
  height: 1px;
  width: 30px;
}

#nav-menu > span:not(:last-child) {
  margin-bottom: 8px;
}

#nav-menu,
#nav-menu > span {
  transition: all 0.4s ease;
}

#nav-menu.active {
  transform: rotate(45deg);
  transition-delay: 0.8s;
}

#nav-menu.active > span:nth-child(2) {
  width: 0;
}

#nav-menu.active > span:nth-child(1),
#nav-menu.active > span:nth-child(3) {
  background-color: #665932;
  transition-delay: 0.4s;
}

#nav-menu.active > span:nth-child(1) {
  transform: translateY(9px);
}

#nav-menu.active > span:nth-child(3) {
  background-color: #665932;
  transform: translateY(-9px) rotate(90deg);
}

.shadow-hover {
  transition: all 0.4s ease;
}
.shadow-hover:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.fade-in {
  -webkit-animation: fadeIn 1s ease;
          animation: fadeIn 1s ease;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.opacity-hover {
  transition: all 0.4s ease;
}
.opacity-hover:hover {
  transition: all 0.4s ease;
  opacity: 0.7;
}

.zoom-hover {
  transition: all 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.rotate {
  transition: 0.2s;
}

.rotate:hover {
  transform: rotate(-3deg);
  transition: 0.3s;
}

.opacity-0 {
  opacity: 0;
}

.swing {
  transition: all 0.2s ease-in-out;
}

.swing:hover {
  -webkit-animation: swing 1s ease;
          animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes swing {
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(3px);
  }
  65% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes swing {
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(3px);
  }
  65% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 980px) {
  .index-ul {
    text-align: center;
  }
}
.index-ul li {
  border-right: 1px solid #bbaa76;
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  padding: 4rem 2rem;
}
.index-ul li:last-child {
  border-right: 0;
}
@media (max-width: 980px) {
  .index-ul li {
    border-right: 0;
    padding: 0 0.5rem;
  }
}

.index-a {
  position: absolute;
  z-index: 1000;
}

.logo {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  height: 7rem;
  line-height: 0.8;
  padding: 1rem 0.8rem;
  position: relative;
}
@media (max-width: 980px) {
  .logo {
    font-size: 2.5rem;
    height: auto;
    padding: 1.5rem 0;
  }
}

.hr-index {
  height: 1px;
  background-color: #bbaa76;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }
}

.nav {
  width: 70%;
}
.nav li {
  border-bottom: 1px solid #ddd4ba;
  font-size: 0.75rem;
}
.nav li a {
  display: block;
  padding: 0.8rem;
}
.nav li a:hover {
  background-color: #860025;
  color: #bbaa76;
}
@media (max-width: 980px) {
  .nav {
    width: 100%;
  }
}

.link-facebook {
  display: inline-grid;
  border-radius: 50%;
  height: 1.8rem;
  margin: 1rem 0;
  margin-right: 0.25rem;
  padding: 0 !important;
  width: 1.8rem;
}
.link-facebook:hover {
  background-color: #860025;
}

.main-header {
  position: relative;
  min-height: 4rem;
  margin-top: 3rem;
}
@media (max-width: 980px) {
  .main-header {
    margin-top: 5rem;
    border-top: 0;
    padding-bottom: 1rem;
  }
}

@media (max-width: 980px) {
  .header-footer {
    display: none;
    height: 70vh;
  }
}

.border-img {
  width: 12px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-image: url("../assets/colors.svg");
  background-position: top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  z-index: 1000;
}

.grid-item img {
  display: block;
  height: 250px;
}
@media (max-width: 980px) {
  .grid-item img {
    width: calc(50vw - 3.5rem);
    height: auto;
  }
}

.grid-fotografia img {
  height: 250px;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 980px) {
  .grid-fotografia img {
    width: calc(50vw - 3.5rem);
    height: auto;
  }
}

.small-item {
  transition: all 0.4s ease;
  display: inline-block;
}
.small-item img {
  height: 3.5rem;
  margin-left: 0.5rem;
}
.small-item svg {
  height: 3.5rem;
  margin-left: -8px;
  margin-right: 0.25rem;
}
.small-item svg:hover .cls-1 {
  fill: white;
}
.small-item svg:hover .cls-2 {
  stroke: #675a32;
}
.small-item .file-select .cls-1 {
  fill: white;
}
.small-item .file-select .cls-2 {
  stroke: #675a32;
}
.small-item .small-item-txt {
  position: absolute;
  top: -40px;
  left: 2rem;
  background-color: black;
  color: white;
  padding: 0.25rem 0.5rem;
  width: auto;
}
.small-item:hover {
  transition: all 0.4s ease;
}
.small-item:hover .small-item-txt {
  transition: all 0.4s ease;
  display: inline-block;
}

.nav-container li img {
  vertical-align: middle;
  margin-right: 0.25rem;
}

.file:hover {
  fill: #ffffff;
}

.btn-back {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}

.cross {
  vertical-align: middle;
  margin-right: 0.5rem;
}/*# sourceMappingURL=main.css.map */