.clearfix {
  &:after {
    display: table;
    clear: both;
    content: "";
  }
}

body {
  background: black;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  // http://us.battle.net/wow/en/
  font-family: "Palatino Linotype", Georgia, Times, sans-serif;
  font-weight: normal;
}
.title {
  text-align: center;
}

.container {
  margin: 0 auto;
  @media (min-width: 960px) {
    width: 960px;
  }
  @media (min-width: 640px) and (max-width: 959px) {
    width: 640px;
  }
  @media (max-width: 639px) {
    width: 320px;
  }
}

.hover_scale:hover {
  transform: scale(1.1);
}

.spell {
  display: block;
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 5px;
  border-width: 5px;
  border-radius: 15px;
  border-style: solid;
  float: left;
  text-align: center;
  &.spell-large {
    width: 100px;
    height: 100px;
    padding: 10px;
    margin: 10px;
    border-width: 10px;
    border-radius: 30px;
    .spell_icon {
      font-size: 80px;
      line-height: 100px;
    }
  }
  @media (max-width: 639px) {
    &.spell-large {
      width: 50px;
      height: 50px;
      padding: 5px;
      margin: 5px;
      border-width: 5px;
      border-radius: 15px;
      .spell_icon {
        font-size: 40px;
        line-height: 50px;
      }
    }
  }
  .spell_icon {
    font-size: 40px;
    line-height: 50px;
  }
}

.spell_name_container {
  margin-left: 180px;
  overflow: hidden;
  @media (max-width: 639px) {
    margin-left: 90px;
  }
}
.spell_name {
  line-height: 60px;
  font-size: 3em;
  margin: 20px 0;
  @media (max-width: 639px) {
    line-height: 30px;
    font-size: 1.5em;
    margin: 10px 0;
  }
}
.spell_content {
  background-color: #333;
  padding: 10px;
  margin-left: 180px;
  font-size: 1.2em;
  @media (min-width: 640px) and (max-width: 959px) {
    margin-left: 0;
  }
  @media (max-width: 639px) {
    margin-left: 0;
    font-size: 0.8em;
  }
}
