* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

body {
  min-height: 100%;
  background-color: #ffffff;
  color: #000000;
}

h1,
p {
  margin: 1.5rem 0;
}

a {
  color: #000000;
}

.search-glossary {
  margin: 1.5rem 0;
}

label {
  margin-right: 1rem;
}

 

#search,
label {
  font-size: 1.1rem;
}

.glossary-item {
  border-bottom: 1px solid #8b868626;
  padding: 1.5rem 0;
}


a,
code,
p {
  font-size: 1rem;
}

code {
  display: inline;
  padding: 0 0.125rem;
  font-family: monospace;
}

.term,
.description {
  font-size: 1.5rem;
}


input#search {
    width: 400px;
    padding: 10px;
    border-radius: 3px;
    border-color: #9aa5ff;
}
h1.heading {
    color: #fb6f10;
    font-size: 4rem;
    font-weight: 600;
}
form.search-glossary h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top:20px;
}
form.search-glossary h3 a {
    text-decoration: none;
    font-family: sans-serif;
    letter-spacing: 1px;
}
form.search-glossary h3 a:hover{
    color:#fd7e14;
}
.glossary-item h2 {
    background-color: #fb6f10;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 2px;
    color: #fff;
    font-size:1.2rem;
}
.glossary-item ul li a {
    text-decoration: none;
}

.glossary-item ul li a:hover{
    color:#fb6f10;
}
.glossary-item ul li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 32px;
}
.website-listing {
    margin-top: 50px;
}
.glossary {
    border: 1px solid #cccccc1f;
    border-radius: 5px;
}
.glossary-item ul {
    column-count: 3;
}

@media only screen and (max-width: 600px) {
    .website-listing img {
        width: 250px;
    }
    input#search {
        width: 300px;
    }
    form.search-glossary h2 {
        margin-bottom: 10px;
       font-size: 1.1rem;
    }
    .glossary-item ul {
        column-count: 1;
    }
    
}