body {
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.5;

  background-color: #ffffff;
  color: #333333;
  height: 100%;

  margin-bottom: 60px;
}

header {
  font-size: 24px;
  font-weight: 700;

  text-decoration: none;
  margin: 20px auto 0 20px;
  display: inline-block;
}

a {
  text-decoration: none;
  font-size: 24px;
  color: #020061;
}

a.info {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  rotate: z 90deg;
  position: fixed;
  top: 30px;
  left: auto;
  right: 16px;
}

a.instagram {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  rotate: z 180deg;
  position: fixed;
  bottom: 0px;
  right: 20px;
  margin-bottom: 20px;
}

a.email {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  rotate: z 270deg;
  position: fixed;
  left: 4px;
  bottom: 17px;
  margin-bottom: 20px;
}

a.request {
  font-size: 12px;
  text-decoration: none;
  color: 0;
}

/*chat gpt*/

.slideshow {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center; /* Center the image within the slide */
}

.slide img {
  max-height: 85vh;
  object-fit: contain; /* Change to 'cover' if you prefer */
  vertical-align: middle; /* Align the image vertically */
  display: inline-block; /* Adjust display */
}

.slide.active {
  display: block;
}
/*HASTA AQUI OK*/

.nav-arrow {
  position: absolute;
  top: 50%;
  width: 50vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.arrow-icon {
  content: '';
  display: block;
  width: 0;
  height: 0;
  /*border-style: dotted;*/
  margin-top: 15px;
}

.prev .arrow-icon {
  border-width: 7px 10px 7px 0;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.7);
}

.next .arrow-icon {
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.7);
}
/*INFO*/

p {
  display: block;
  max-width: 25vw;
  margin-top: 30px;
  margin-left: 30px;
  /*margin: 30px auto;
  padding-top: 10vh;*/
  font-size: 12px;
  text-align: left;
  text-transform: lowercase;
}

a.representation {
  font-size: 12px;
}

p.clients {
  /*background-color: lightgoldenrodyellow;*/
  padding: 0;
}

/* SO FAR SO GOOD. BELOW RESPONSIVE*/

/* Add a media query for smaller screens */
@media only screen and (max-width: 768px) {
  header {
    font-size: 20px;
    margin: 10px auto 0 10px;
  }

  a {
    font-size: 20px;
  }

  a.info,
  a.instagram {
    font-size: 14px; /* Adjusted font size */
  }

  a.instagram,
  a.email {
    margin-bottom: 10px;
  }

  .slideshow {
    height: 60vh;
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .slide img {
    max-height: 60vh;
  }

  .nav-arrow {
    width: 30vw;
    top: 30vh;
  }

  a.email {
    left: -10px; /* Adjusted left margin with rotation compensation */
  }

  a.info {
    top: 20px;
    right: 0px;
  }

  a.instagram {
    right: 10px;
  }

  p {
    font-size: 10px;
    max-width: 50vw;
  }

  a.representation {
    font-size: 10px;
    text-decoration: none;
    color: black;
  }
}
