
body {
    margin: 0;
    /*font-family: 'Questrial', sans-serif;*/
    background-color: #f7f7f7;
    color: #333;
    
font-family: 'Poppins', sans-serif;
  }

  .header {
      background: #2c3e50;
      color: #ecf0f1;
      padding: 15px;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      height: 200px;
      transition: transform 0.35s ease-in-out; /* Agrega una transición suave para la transformación */
  
    }

    .cont-header{
        width: 600px;
        margin: auto;
    }
    .header-fixed {
        height: 50px; /* Ajusta la altura deseada para el header fijo */
        padding: 10px; /* Ajusta el padding deseado para el header fijo */
        position: fixed;
        z-index: 9;
        transition: height 0.35s ease, padding 0.35s ease; 
      }
      
      .logo-container {
        width: 100px;
        margin: auto;
        transition: transform 0.35s ease-in-out; /* Agrega una transición suave para la transformación */
      }

      /* Estilo adicional para el logo y el texto durante la animación */
.logo-container.animated{
    transform: translateX(-100%);
    margin: unset;
    width: 55px;
  }

      .logo-container svg {
        width: 50% ;/* Ajusta el ancho de tu logo */
        height: auto;
        transition: transform 0.35s ease;
      }
      
      .text-container {
        transition: transform 0.35s ease;
      }
      .text-container h1 {
        font-family: 'Oxygen', sans-serif;
        /*font-family: 'Fjalla One', sans-serif;*/
        margin: 0;
        font-size: 46px;
        font-weight: 600;
        letter-spacing: 5px;
        margin-bottom: 0px;
        line-height: 100%;
        text-transform: uppercase;
        transition: transform 0.35s ease, font-size 0.35s ease, margin 0.35s ease;
    }

    .text-container p {
        display: block;
        line-height: 100%;
        margin-top: 10px;
    }

    .text-container p.hidden {
        display: none;
    }
    
    .text-container h1.animated {
        transform: translateX(-32%);
        margin: unset;
        font-size: 24px;
        margin-top: -34px;
    }

    path {
        fill: #fff; 
      }

    
  
  p {
    /*font-family: 'Questrial', sans-serif;*/
    line-height: 140%;
  } 
   


  
  a {
    color: #3498db; /* Color del enlace */
    text-decoration: none; /* Quita el subrayado predeterminado */
    transition: color 0.3s; /* Agrega una transición suave al cambio de color */
    text-decoration: unset;
  }
  
  /* Estilo para enlaces cuando están en estado "hover" */
  a:hover {
    color: #2980b9; /* Cambia el color cuando el mouse está sobre el enlace */
    text-decoration: underline;
  }
  

  button {
    /*background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: auto;
    height: 40px;*/
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.02), 0 1px 1px rgba(0,0,0,0.06);
    box-shadow: 0 1px 4px rgba(0,0,0,0.02), 0 1px 1px rgba(0,0,0,0.06);
    padding: 9px 18px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
    -o-transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
    color: #fff;
    background-color: #111;
    margin-left: 20px;
  }

  button:hover {
    /*background-color: #2980b9;*/
    color: #fff;
    text-decoration: none;
  }


  /* Agrega estilos específicos cuando el botón está deshabilitado */
button[disabled] {
    opacity: 0.13; /* Reducir la opacidad para indicar visualmente que está deshabilitado */
    cursor: not-allowed; /* Cambiar el cursor para indicar que no se puede hacer clic */
    color: #d1d1d1;
}
input{
  width: 255px;
    height: 40px;
}

.update {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
    border: solid 1px #595959;
}
.overview {
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    margin: auto;
    
  }


  .content{
    width: 600px;
    margin: auto;
    box-sizing: border-box;

  }
  #key::placeholder {
  /* Ajusta el padding según tus preferencias */
  padding: 10px;
  box-sizing: border-box;
}

.title {
  margin-bottom: 14px;
  font-weight: 500;
}

.title-canvas{
    text-align: center;
    font-weight: 600;
    margin-top: 0;
}


  .material-symbols-outlined {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
  }
  
  
  .material-symbols-outlined {
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
  }
     .box-container{
      width: 600px;
      height: 600px;
      position: relative;
      margin: auto;
      background-color: #fff;
      border: 1px solid #ccc;
      box-sizing: border-box;
  
      }
  
      .triangle-container {
        position: absolute;
        width: 300px;
        height: 300px;
        overflow: hidden;
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
      }
  
  
      .p1 {
      top: 300px;
      left: 0;
      transform: scaleX(-1) rotate(360deg);
    }
  
  
  
  .p2 {
  
    position: absolute;
      top: 300px;
      left: 300px;
  }
  
  
  .p3 {
      top: 300px;
      left: 300px;
      transform: scaleX(-1) rotate(90deg);
  }
  
  
  
  .p4 {
      position: absolute;
      top: 0px;
      left: 300px;
      transform: rotate(270deg);
  }
  
  
  .p5 {
      top: 0px;
      left: 300px;
      transform: scaleX(-1) rotate(180deg);
  }
  
  
  .p6 {
      position: absolute;
      top: 0px;
      left: 0px;
      transform: rotate(180deg);
  }
  
  
  
  .p7 {
      top: 0px;
      left: 0px;
      transform: scaleX(-1) rotate(270deg);
  }
  
  
  .p8 {
      position: absolute;
      top: 300px;
      left: 0px;
      transform: rotate(90deg);
  }
  
  
  
  .preview-source {
      float: left;
      align-items: center;
      justify-content: center;
      
      background-color: #fff;
     margin-left: 10px;
      border-radius: 10px;
      overflow: hidden;
      /* box-shadow: 0 0 15px rgba(0,0,0,.10); */
      width: 50%;
      box-sizing: border-box;
      border: 1px solid #ccc;
      position: absolute;
      z-index: 2;
      width: 170px;
      padding: 20px;
      top: 0;
      left: 105%;
      text-align: center;
      
    }
  
    .thumb {
      width: 100%;
      height: auto;
      background-size: cover;
      float: left;
      border-radius: 5px;
      margin-bottom: 1px;
    }
  .thumb img {
    width: 100%;
  }
   .username {
     
      display: block;
      width: 100%;
      margin-top: 2px;
      font-size: 12px;
      font-weight: 500;
    }
  
    .link-img {
      display: block;
      width: 100%;
      font-size: 12px;
      font-weight: 500;
  
    }
    .profile-img img {
      border-radius: 50%;
      width: 45px;
      height: 45px;
      overflow: hidden;
      border: solid 2px #0de;
    }
  
    .info-img {
      width: 100%;
      height: auto;
      margin: auto;
      margin: 20px auto 0 auto;
    }
    .info-img-left {
      margin:auto;
      width: 80%;
      height: auto;
    }
  
  
    .custom-items {
      display: flex;
      justify-content: center;
      width: 100%;
      /* float: left; */
      /* text-align: center; */
      padding: 20px;
      box-sizing: border-box;
      /* margin: auto;*/
    }
  
   
  .credit {
  
    float: left;
      width: 100%;
      font-size: 10px;
      height: 20px;
      display: block;
  }
  
  .footer {
    background: #ecf0f1;
    padding: 15px;
    bottom: 0;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    float: left;
    margin-top: 40px;
    box-sizing: border-box;

  }
  
  .footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-size: 12px;
    font-weight: 500;
  }

  .img-cc {
    width: 100px;
    margin-left: 20px;
  }


/* Estilos para la sección de Blog */
.blog-section {
    margin-top: 40px; /* Ajusta el margen superior según sea necesario */
  }
  
  /* Estilos para las entradas del Blog */
  .blog-entry {
    display: flex;
    margin-bottom: 30px; /* Ajusta el margen inferior según sea necesario */
  }
  .blog-entry img {
    width: 100%;
  }
  
  .blog-image-left,
  .blog-image-right {
    flex: 1;
    max-width: 50%; /* La imagen ocupa la mitad del ancho en dispositivos más grandes */
  }
  
  .blog-content-right,
  .blog-content-left {
    flex: 1;
    padding: 0 20px; /* Añade espacio entre la imagen y el contenido */
  }
  
  /* Alinea el texto al centro en dispositivos más pequeños */
  @media (max-width: 768px) {
    .blog-entry {
      flex-direction: column;
    }
  
    .blog-image-left,
    .blog-image-right,
    .blog-content-right,
    .blog-content-left {
      max-width: 100%; /* La imagen ocupa todo el ancho en dispositivos más pequeños */
    }
  }

  /* Media query para pantallas más pequeñas (dispositivos móviles) */
  @media only screen and (max-width: 1000px) {
    .preview-source{display: none;}
    .box-container {
      width: 100%; /* O cualquier otro estilo que desees para pantallas más pequeñas */
    }
  .credit{ text-align: center;}
    .content {
    width: 100%; /* Cambiado a 100% */
    margin: auto;
    box-sizing: border-box;
  }
  
  
    .box-container{
      width: 300px;
        height: 300px;
  
      }
  
      .triangle-container {
        position: relative;
        width: 150px;
        height: 150px;
        overflow: hidden;
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
      }
  
      .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .p1 {
      top: 150px;
      left: 0;
      transform: scaleX(-1) rotate(360deg);
    }
  
  
  .p2 {
      position: absolute;
      top: 150px;
      left: 150px;
  }
  
  .p3 {
      top: 0;
      left: 150px;
      transform: scaleX(-1) rotate(90deg);
  }
  
  
  .p4 {
      position: absolute;
      top: 0px;
      left: 150px;
      transform: rotate(270deg);
  }
  
  .p5 {
      top: -300px;
      left: 150px;
      transform: scaleX(-1) rotate(180deg);
  }
  
  .p6 {
      position: absolute;
      top: 0px;
      left: 0px;
      transform: rotate(180deg);
  }
  
  
  .p7 {
      top: -450px;
      left: 0px;
      transform: scaleX(-1) rotate(270deg);
  }

  
  .p8 {
      position: absolute;
      top: 150px;
      left: 0px;
      transform: rotate(90deg);
  }
  
  
  
    /* Otros estilos específicos para dispositivos móviles... */
  }