body {
    font-family:monospace;
    font-size: 0.7rem;
    width: 100%;
    height: 100%;
    background-color: #d0e2ee;
    justify-content:center;
    margin: 0%;
    /* transform: scale(0.8);*/
}

div {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    margin: 4em;
    margin-bottom: 0%;
}

img {
    width: 50px;
    height: 50px;
    margin-bottom: 0%;
}

header {
    margin-top: 0%;
    font-size: 0.75rem;
    color: #232333;
}

h1 {
    margin-block-start: 0.4em;
}

textarea[name="user-input"] {
    height: 100px;
    width: 90%;
    font-family: inherit;
    font-size: inherit;
    color: #333;
    border-radius: 30px;
    border-color: #A6A6A6;
    padding: 1rem;
    margin: 1%;
    resize: none;
    /* cómo hacer para que la barra de scroll esté dentro del borde y sea redondo tb?*/   
}

*::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
    height: 4px;
  }
  *::-webkit-scrollbar-track {
    background-color: transparent;
    width: 5.5px;
    border-radius: 20px;
  }

    /* Ponemos un color de fondo y redondeamos las esquinas del thumb */
  *::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 20px;
  }

  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  *::-webkit-scrollbar-thumb:hover {
    background: #6e6e6e;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  }

  /* Cambiamos el fondo cuando esté en active */
  *::-webkit-scrollbar-thumb:active {
    background-color: #5e5e5e;
  }

#reset-button {
    width: 200px;
    height: 25px;
    font-family: inherit;
    font-size: inherit;
    color: #ffffff;
    background-color: #2f78a8;
    border-style: none;
    border-radius: 30px;
    padding: 1.2rem;
    margin: 1.2rem 1.2rem 1.2% 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#reset-button:active {
    cursor: pointer;
    background-color: #084e7c;   
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: center;
    text-align: center;
    gap: 3%;
    padding: 0;
    list-style: none;
    color: #ffffff;
}

.li-item {
    width: 300px;
    height: 25px;
    background-color:#232333;
    border-radius: 40px;
    padding: 1.5%;
    margin: 1%;
}

footer {
    color:#A6A6A6;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2px;
}

@media (hover : hover) { 
    #reset-button:hover {
        cursor: pointer;
        background-color: #084e7c;
        
    }
        
}