* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  border: none;
  -webkit-appearance: none;
  font-family: 'Helvetica Neue';
}

.container {
  display: grid;
  width: 1024px;
  font-weight: 200;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 120px;
  grid-template-rows: 460px 1fr 1fr;
  grid-row-gap: 50px;
}
.cover {
  width: 1024px;
}
.description {
  display: grid;
  grid-template-columns: 320px 1fr;
}
.first {
  width: 280px;
  height: 300px;
  border: 3px solid black;
}
.title {
  width: 250px;
  height: 220px;
  font-size: 2.4em;
  font-weight: 500;
  padding: 45px 0px 0px 30px;
  word-wrap: break-word;
}
.sub {
  font-weight: 200;
  padding: 0px 0px 0px 30px;
}
.second {
  width: 100%;
  height: 300px;
  position: relative;
}
#description {
  display: inline-block;
  width: 380px;
  padding: 10px;
  line-height: 1.5em;
}
#chart_box {
  width: 300px;
  height: 300px;
  display: inline-block;
  position: absolute;
  right: 0px;
}
