html{
margin: 0px;
}
body {
    background: linear-gradient(45deg, #5b247a, #1bcedf);
    background-attachment: fixed;
    height: 100%;
    margin: 0px;
}

#cv {
    font-size: 1rem  ;
    white-space: pre-wrap;
    margin-top: 0.9375em; /* 15px/16 */
    margin-left: 1em; /* 15px/16 */
}
  
.progress-container {
    width: 95%;
    min-width: 20em;
    margin-bottom: 0.625em;
    margin-left: auto;
    margin-right: auto;
    margin-top:  0.925em;
}
  
.progress-bar-background {
    height: 1em;
    background-color: #444;  /* gris oscuro */
    position: relative;  /* Permite la superposición de elementos hijos */
}

.progress-bar {
    height: 100%;
    background-color: #4C9A2A;  /* verde */
    position: absolute;  /* Permite la superposición */
    width: 0;  /* Inicialmente, la barra verde no es visible */
}

.progress-text {
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    padding-bottom: 0.3125em;
    color: white;  /* Hace que el texto sea blanco */
}



#coding-skills-title {
    color: #4C9A2A;
    margin-left: 1rem;
    margin-top: 0.9375em;
    font-size: 1rem  ;
}
#coding-skills {
margin-bottom: 20px;
}

.personal-info {
    color: #d3d3d3;
    font-size: 1rem  ;
    white-space: pre-wrap;
    margin-top: 3em;
    margin-left: 1em;
  }


  /*Terminal*/
  .terminal-window {
    width: 100vw; /* ajustar a la anchura que desees */
    max-width: 1200px; /* ajustar al tamaño máximo que desees */
    margin: 2em auto;
    background-color: #272822;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: auto;
    padding-bottom: 20px;
  }
  
  .terminal-header {
    display: flex;
    align-items: center;
    background-color: #ddd;
    padding: 5px;
    border-radius: 5px 5px 0 0;
  }
  
  .terminal-header-btns {
    display: flex;
    align-items: center;
  }
  
  .close-btn,
  .minimize-btn,
  .expand-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  .close-btn { background-color: #fc605b; }
  .minimize-btn { background-color: #fecb2f; }
  .expand-btn { background-color: #2aca3e; }
  
  .terminal-title {
    margin:auto;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
  }

  /*Scroll bar*/
  .terminal-window::-webkit-scrollbar {
    width: 8px;
  }
  
  .terminal-window::-webkit-scrollbar-track {
    background-color: #333;
    border-radius: 4px;
  }
  
  .terminal-window::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 4px;
  }
  

  /* Tamaños de fuente para pantallas grandes */
@media (min-width: 800px) {
    #cv {
        font-size: 16px  ;
    }

    #coding-skills-title {
        font-size: 16px  ;
        margin-left: 1rem;
    }

    .personal-info {
        font-size: 16px  ;
    }
}

/* Tamaños de fuente para pantallas pequeñas */
@media (max-width: 799px) {
    #cv {
        font-size: 16px  ;
    }

    #coding-skills-title {
        font-size: 16px  ;
        margin-left: 1rem;
    }

    .personal-info {
        font-size: 16px  ;
    }
}
