* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  color: #000;
  background: url("imagenes/fondo.jpg") no-repeat center center fixed;
  background-size: cover;
}

.container {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  gap: 2rem;
}

.text {
  flex: 1;
}

.text .by {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.text .cionet {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  line-height: 0.9;
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image img {
  max-width: 100%;
  height: auto;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  border-top: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.7);
  color: #241e49;
  font-size: 0.9rem;
  font-family: "Century Gothic", sans-serif;
  text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

.footer-left {
  text-align: left;
}
.footer-center {
  text-align: center;
}
.footer-right {
  text-align: right;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .text .by {
    font-size: 1.5rem;
  }

  .text .cionet {
    font-size: 3rem;
  }

  .image {
    margin-top: 1.5rem;
  }

  .footer {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .text .cionet {
    font-size: 2.3rem;
  }

  .footer {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
