body {
    background-color: rgba(10, 10, 11, 0.893);
    color: rgb(0, 255, 64);
  }
  
input, button{
    background: rgb(34, 41, 43);
    border: 3px solid green;
    color: white;
    border-radius: 5px;
}


  .comment-section {
    width: 600px;
    position: relative;
    left: 0px;
  }
  
  #comments-container {
    margin-top:  20px;
  }
  
  .comment {
    background-color: rgba(255, 255, 255, 0.21);
    border-radius:  10px;
    border: 2.775px solid green;
    padding:  10px;
    margin-bottom:  10px;
    display: flex; 
    align-items: center;
  }
  
  .comment-text {
    flex-grow:  1;
  }
  
  .delete-button {
    background-color: rgb(255, 0, 0);
    color: white;
    border: none;
    border-radius:  50%;
    width:  20px;
    height:  20px;
    text-align: center;
    cursor: pointer;
  }
  