.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.align-center{
    align-items: center;
}

.align-start{
    align-items: flex-start;
}

.align-end{
    align-items: flex-end;
}

.justify-center{
    justify-content: center;
}

.justify-end{
    justify-content: flex-end;
}

.justify-between{
    justify-content: space-between;
}

.justify-around{
    justify-content: space-around;
}

.justify-start{
    justify-content: flex-start;
}


.btn {
    font-size: 15px;
    cursor: pointer;
    padding: 0.5em 1.5em;
    border-radius: 0.25em;
    outline: none;
    border: 2px solid rgba(0, 0, 0, .85);
    background-color: rgba(0, 0, 0, .75);
    color: white;
}

 .btn:hover {
    outline: none;
    border: 2px solid black;
    background-color: rgba(0, 0, 0, .9);
    color: greenyellow;
  }
  
 .btn:focus {
    border-color: green;
  }
  
 .btn:active {
    outline: none;
    border: 2px solid transparent;
    background-color: rgba(0, 0, 0, .75);
    color: white;
  }




  .comment{
    border: 2px solid transparent;
  }

  .comment.selected{
    padding: 10px;
    background:lightyellow;
    border: 2px solid darkgreen;
    border-radius:8px;
    margin-top:30px;
    margin-bottom:30px;
  }


  .flex{
    display:flex;
  }

  .align-center{
    align-items:center;
  }


  .justify-center{
    justify-content:center;
  }


a.neon, a.neon:visited{
  color: var(--neon-color);
}
.padding-5{
padding:5px;
}
.margin-5{
margin:5px!important;
}