html {
   font: 400 16px/24px Roboto,sans-serif;
}

.changelog {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,.2), 0 3px 4px 0 rgba(0,0,0,.14), 0 3px 3px -2px rgba(0,0,0,.12);
    color: #757575;
    padding: 80px 114px;
    position: relative;
    z-index: 1;
}

.changelog page-title {
    margin-top: 0;
}

.changelog h1 {
    color: #424242;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 26px;
}

.changelog h2 {
    border-color: #CFD8DC;
    color: #424242;
    font-size: 32px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 26px;
    padding-bottom: 15px;
}

.badge {
    position: relative;
    top: -3px;
    border-radius: 16px;
    display: inline-block;
    width: 90px;
    height: 32px;
    line-height: 32px;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.quote {
  color: #4285F4;
}

.regress {
  color: #dd4b39;
}

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Synth Ed Release Notes</title>
  <link rel="stylesheet" href="./style.css">
  <style>
    .card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 20px 0;
    }
    .card {
      width: 90%;
      max-width: 200px;
      padding: 15px;
      margin: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s;
    }
    .card:hover {
      transform: scale(1.05);
    }
    @media (min-width: 600px) {
      .card-container {
        justify-content: space-around;
      }
    }
    /* Badge Styling */
    .badge {
      display: inline-block;
      padding: 5px 5px;
      border-radius: 12px;
      font-size: 12px;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff;
    }
    .badge-bug {
      background-color: #e53935; /* Red */
    }
    .badge-enhancement {
      background-color: #1e88e5; /* Blue */
    }
	.badge-coreupdate {
      background-color: #ADD8E6; /* Light Blue */
	  color: #000;
    }
    .badge-newfeature {
      background-color: #43a047; /* Green */
    }
    .badge-deprecated {
      background-color: #fb8c00; /* Orange */
    }
    .badge-security {
      background-color: #8e24aa; /* Purple */
    }
    .badge-performance {
      background-color: #fdd835; /* Yellow */
      color: #000;
    }
    .legend {
      margin: 20px 0;
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #f9f9f9;
    }
    .legend-item {
      margin-bottom: 5px;
    }
	
	 .chatbot {
      margin: 20px;
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      background-color: #f9f9f9;
    }
    .chatbot label {
      display: block;
      margin: 10px 0 5px;
      font-weight: bold;
    }
    .chatbot input, .chatbot select, .chatbot textarea, .chatbot button {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
  </style>

h1, h2, h3 {
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
}

h1 {
    font: 400 32px/40px Google Sans,sans-serif;
    letter-spacing: 0;
    margin: 5px 0 10px;
}

h2 {
    border-bottom: 0;
    font: 400 22px/30px Google Sans,sans-serif;
    margin: 48px 0 24px;
    padding-bottom: 0;
    letter-spacing: -.01em;
}

h2 .date {
  color: #4285F4;
}

h3 {
      font: 600 22px/30px Google Sans,sans-serif;
      margin: 16px 0 16px;
}

p {
    margin: 16px 0;
    padding: 0;
}

code, pre, .pre-style {
    background: #f7f7f7;
    color: #37474f;
    font: 400 100%/1 Roboto Mono,monospace;
    padding: 1px 4px;
    font: 500 90%/1 Roboto Mono,monospace;
    word-break: break-word;
}

ul {
    display: block;
    list-style: disc outside;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
    margin: 0;
    padding-left: 0;
}

li {
    list-style-type: none;
    margin: 8px 0 8px 22px;
    padding: 0;
}

:link, :visited {
    color: #039be5;
    outline: 0;
    text-decoration: none;
}