@media (prefers-reduced-motion: no-preference)
:root {
  scroll-behavior: smooth;
}
*
{
  box-sizing: border-box;
}
body{
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 16px;
font-weight: 400;
line-height: 24px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
text-align: start;
color: rgb(33, 37, 41);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}
.h1, h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .h1, h1 {
      font-size: 2.5rem;
  }
}
.bg-light{
  background-color: rgb(248, 249, 250);
}
.shadow {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.p-1 {
  padding: 1rem !important;
}
.mb-1{
  margin-bottom: 1rem;
}
.p-5 {
  padding: 3rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.small, small {
  font-size: .875em;
}
code {
  font-size: .875em;
  color: rgb(214, 51, 132);
  word-wrap: break-word;
}
code, kbd, pre, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
.badge{
  border-radius: 30px;
  background-color: #38FB73;
  padding: 0.2em 1em;
}
.btn-markdown{
  border-radius: 30px;
  background-color: #38FB73;
  padding: 0.2em 1em; 
}
.btn-success, .btn-info{
  border-radius: 0.5em;
  padding: 0.3em 1em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
}
.btn-success{
  background-color: #00A620;
}
.btn-success:hover{
  background-color: #00BC23;
}
.btn-info{
  background-color: #0083EA;
}
.btn-info:hover{
  background-color: #0089FF;
}
a{
  color: ;
}
img{
  max-width: 100%;
  height: auto;
}
.unstyled-list{
  list-style: none;
}
.list-items{
  padding: 0;
  margin: 0;
  list-style: none;
}
.d-flex{
  display: flex;
  align-items: end;
}
.list-items img{
  width: 80px;
  margin-right: 1em;
}
.list-items a{
  text-decoration: none;
}
.list-item{
  box-shadow: 0 0 .5rem rgba(0,0,0,.15);
  background-color: rgba(0, 0, 0, 0.01);
  display: flex;
  align-items: center;
}
.list-item:hover{
  box-shadow: 0 0 .5rem rgba(0,0,0,.15);
  background-color: rgba(0, 0, 0, 0.05);
}

.list-items li{
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .list-items li{
    width: 50%;
  }
}
.container{
  width:100%; max-width: 900px; margin: 0 auto;
  padding: 0 1rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.search-container{
  margin-bottom: 1rem;
}
.suggestion-item{
  cursor: pointer;
  padding: 0.5rem 1rem;
}
.suggestion-item:hover{
  background-color: rgba(0, 0, 0, 0.1);
}
.search-container{
  position: relative;
}
.suggestions-box{
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 .5rem rgba(0,0,0,.15);
}
.main-content{
  padding: 3rem;
  padding-top: 1rem;
  margin-top: 1rem;
}