
img{
    margin: 0px;
    border: 0px;
    transform: .3s;
}

#column{
    display: flex;
    flex-direction: column;
}

#column::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
 #column {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin: 0px;
  }

  body::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
 body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin: 0px;
    background-color: var(--background-color);

  }

.txt{
    transform: translateY(25vh); 
    display: flex;
    flex-direction: column;
    position: fixed;
    font-family: npk-regular;
    width: 100%;
    height: 28vh;
    bottom: 0px;
    background-color: var(--background-color);
    border-right: var(--thread-width) solid var(--thread-color);
    transition: .3s ease-in-out;
  }

  .txt section:first-of-type:hover{
    background-color: white;
    cursor: pointer;
  }

  .txt section:last-of-type{
    position: relative;
    width: 100%;
    border-top: var(--thread-width) solid var(--thread-color);
    height: 25vh;
  }

  .txt section:first-of-type{
    height: 3vh;
    width: 100%;
    top: 0px;
    left: 0px;
    position: relative;
    border-top: var(--thread-width) solid var(--thread-color);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: space-between;
    flex-direction: row;
  }

  .txt section:first-of-type p{
    margin: var(--margin);
  }

  .txt section:last-of-type p{
    margin: var(--margin);
  }
