body {
  background-color: #111111;
  margin: 0;
  padding: 0;
  min-width: 500px;
}

.content-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ------------------------------------ TITLE */
.title-container {
  text-align: center;
  padding: 20px;
}

.title {
  font-family: "Alkatra", system-ui;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.title::before {
  content: "";
  position: absolute;
  background-color: #ff0000;
  height: 100%;
  width: 10px;
  top: 0;
  left: -20px;
  transform-origin: left center;
  transform: skewY(20deg);
}

.title::after {
  content: "";
  position: absolute;
  background-color: #ff0000;
  height: 100%;
  width: 10px;
  top: 0;
  right: -20px;
  transform-origin: right center;
  transform: skewY(-20deg);
}

/* ------------------------------------ HEADER */
.header-container {
  position: fixed;
  width: 100%;
  z-index: 1;
}

.cabecera {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  color: white;
}

.cabecera h1 {
  color: white;
  margin: 0;
}

.title .logo-title {
  width: 50px;
}

/* ------------------------------------ HORIZONTAL MENU */
.menu {
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #111;
  padding: 10px;
  height: 110px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s;
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
  margin-bottom: -85px;
}

.menu a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.3s ease-in-out;
}

.menu a:hover:before {
  width: 100%;
}

.cabecera .title-container .logo-title {
  width: 40px;
  position: relative;
  top: 5px;
  right: 1px;
}

/* ------------------------------------ PRINCIPAL PAGE*/
/* CARD */
.contenedor {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 80vh;
  gap: 100px;
}

.tarjeta {
  width: 210px;
  height: 350px;
  border-radius: 30px;
  background: #212121;
  box-shadow: 15px 15px 30px rgb(25, 25, 25), -15px -15px 30px rgb(60, 60, 60);
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: inherit;
  box-shadow: inherit;
}

/* ------------------------------------ LINE */
.line {
  border: none;
  height: 1px;
  background-color: rgb(49, 45, 45);
  margin: 0 auto;
  width: 60%;
}

/* ------------------------------------ CONTENT */
.header {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  height: 85vh;
}

.descripcion {
  font-family: "Courier New", Courier, monospace;
  margin: 10px 0 0 0;
  text-align: center;
  width: 500px;
  min-width: 500px;
}

#photo {
  border-radius: 10px;
  object-fit: cover;
}

/* ------------------------------------ CONTENT 1 */
.header1 {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: row-reverse;
  height: 60vh;
  gap: 100px;
  margin-top: 100px;
}

.description1 {
  font-family: "Courier New", Courier, monospace;
  margin: 10px 0 0 0;
  text-align: center;
  width: 500px;
  min-width: 500px;
}

/* ------------------------------------ CONTENT 2 */
.header2 {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: row;
  height: 60vh;
  gap: 100px;
}

.description2 {
  font-family: "Courier New", Courier, monospace;
  margin: 10px 0 0 0;
  text-align: center;
  width: 500px;
  min-width: 500px;
}

/* ------------------------------------ CONTENT 3 */
.header3 {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-direction: row-reverse;
  height: 60vh;
  gap: 100px;
}

.descripcion3 {
  font-family: "Courier New", Courier, monospace;
  margin: 10px 0 0 0;
  text-align: center;
  width: 500px;
  min-width: 500px;
}

/* ------------------------------------ FOOTER */
.footer {
  color: white;
  background-color: #111;
  padding: 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
}

/* SOCIAL */
.social-wrapper {
  display: flex;
  gap: 10px;
  font-family: monospace;
}

.social-wrapper > div {
  text-align: center;
}

.social-wrapper > div + div {
  border-inline-start: 1px solid #d6cfcf;
  padding-inline-start: 15px;
}

.social-wrapper > div > p {
  margin-top: 15px;
  max-width: 200px;
}

.social-wrapper a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background-color: #191919;
  color: #d5ad72;
  position: relative;
}

/* ------------------------------------ MEDIA QUERIES */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    min-width: auto;
    width: 100%;
    max-width: 100vw;
  }

  .title {
    font-size: 32px;
    text-align: center;
  }

  .menu {
    flex-direction: row;
    width: 100%;
  }

  .menu a {
    margin-bottom: 0;
    margin-top: 50px;
    font-size: 14px;
    text-align: center;
    padding: 10px;
  }

  .header1,
  .header2,
  .header3 {
    flex-direction: column;
    height: auto;
    gap: 20px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .description1,
  .description2,
  .descripcion3 {
    width: 90%;
    min-width: unset;
    margin-bottom: 100px;
    box-sizing: border-box;
  }

  #photo {
    width: 80%;
    height: auto;
    max-width: 100%;
    margin-top: 20%;
  }

  .footer-container p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 30px;
  }

  .menu a {
    padding: 8px 10px;
  }

  .description1,
  .description2,
  .descripcion3 {
    font-size: 14px;
  }
}
