.dictionary {
  width: 100%;
  max-width: calc(800px + 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 7rem;
  padding: 0 1rem;
}
.entry {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}
.entry__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--darkblue);
  padding: 0 1.5rem;
  align-items: center;
  border-radius: 5px;
  min-height: 2.5rem;
  cursor: pointer;
}
.entry__letter {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 600;
}
.entry__icon i{
  color: gray;
  transition: .3s all;
}
.entry__content {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
}

.content__description {
  padding: 1rem 0 0 2rem;
  margin-bottom: 2rem;
  display: none;
  width: unset;
}

.articles {
  max-width: calc(1100px + 2rem);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.articles__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.articles__head__title {
  font-size: 2rem;
  margin-right: 1rem;
  font-weight: 600;
}
.articles__head__hr {
  width: 100%;
  border-top: 1px solid black;
  height: 1px;
}

.toggleHide{
  display: block;
}
.toggleIcon{
  transform: rotateZ(180deg) rotateY(180deg);
}