 body {
    background-color: lightgrey;
    color: #333;
}

/* Style the anchor tags */
a {
  /* Updated to use the responsive variable */
  color: #0000EE;
  text-decoration: none; /* Remove the underline */
  transition: color 0.3s ease;  /* Smooth color transition for hover effect */
}

a:visited {
  color: #551A8B;
}

a:hover,
a:focus-within,
a:active {
  color: red
}

.comments-section input[type="text"] {
  /*
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: none;
    */
    background-color: white;
    color: black;
}

.submit-button {
  /*
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: none;
    cursor: pointer;
  */
    background-color: #333;
    color: white;
}

.submit-button:hover {
    background-color: #555;
    color: white;
}