@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400&display=swap');


html, body {
  box-sizing: border-box;
  height: 100%;
  overflow: auto;
}

body {
  background-color: #fff;
  color: #404040;
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  padding: 24px;
}

a, a:visited {
  color: #404040;
  font-weight: 400;
  text-decoration: none;
}

a:hover {
  color: #808080;
}

hr {
  border: solid 1px #808080;
  height: 2px;
}

i {
  margin: 0 8px;
  width: 24px;
  text-align: center;
}

.dictionary-entry {
  align-items: center;
  display: flex;
  height: 100%;
  flex-direction: column;
  font-size: 24px;
  font-weight: 300;
  justify-content: center;
  line-height: 1;
}

.dictionary-entry-angela {
  text-align: left;
}

.dictionary-entry-name {
  display: inline-block;
  font-size: 72px;
  line-height: 1;
  margin: 0;
}

.dictionary-entry-pronounciation {
  display: inline-block;
  margin-left: 16px;
  vertical-align: super;
}

.dictionary-entry-definition {
  line-height: 1.5;
  padding: 16px 0;
}

.dictionary-entry-definition ul {
  list-style: none;
  margin: 8px 0;
  padding-left: 8px;
}

.dictionary-entry-definition ul li {
  display: flex;
  margin: 8px 0;
}

.material-icons {
  line-height: 1.5;
}

.face-icon, .heart-icon { color: #4D8B31; }
.work-icon, .tool-icon, .code-icon { color: #FFC800; }
.email-icon, .person-add { color: #FF8427; }

@media only screen and (max-width: 600px) {

  .dictionary-entry {
    font-size: 16px;
    height: auto;
  }

  .dictionary-entry-name {
    font-size: 56px;
  }

  .material-icons {
    line-height: 1;
  }

}