
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  display: none;
}


.app {
  width: 350px;
  height: 650px;
  background: #122B32;
  color: #fff;
  border-radius: 5px;
  padding: 30px;
  font-family: 'Open Sans', sans-serif;
}
.app nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.app nav h2 {
  font-size: 16px;
	
  letter-spacing: 0.5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  line-height: 24px;
}
.app nav i {
  font-size: 20px;
	
  cursor: pointer;
}
.app .content .basicInfo {
  margin-bottom: 40px;
}
.app .content .basicInfo .category span {
  font-size: 16px;
	
}
.app .content .basicInfo .elemName span {
  font-size: 38px;
	
}
.app .content .advInfo {
  width: 100%;
  height: 405px;
  background: #37d;
  border-radius: 5px;
  padding: 20px;
  overflow-Y: scroll;
}
.app .content .category,
.app .content .elemName,
.app .content .atomicMass,
.app .content .density,
.app .content .discovery,
.app .content .melting,
.app .content .boiling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.app .content .category span,
.app .content .elemName span,
.app .content .atomicMass span,
.app .content .density span,
.app .content .discovery span,
.app .content .melting span,
.app .content .boiling span {
  text-transform: Capitalize;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  letter-spacing: 0.5px;
}
.app .content .category span:last-child,
.app .content .elemName span:last-child,
.app .content .atomicMass span:last-child,
.app .content .density span:last-child,
.app .content .discovery span:last-child,
.app .content .melting span:last-child,
.app .content .boiling span:last-child {
  text-align: right;
}
.app .content .atomicMass span,
.app .content .density span,
.app .content .discovery span,
.app .content .melting span,
.app .content .boiling span,
.app .content .summary span {
  font-size: 13px;
	
}
.app .content .summary p {
  padding-top: 20px;
  font-size: 13px;
	
  font-family: 'Open Sans', sans-serif;
  line-height: 20px;
}

@media screen and (max-width: 567px) {
  .app {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .app .content .advInfo {
    width: 100%;
    height: calc(100vh - 250px);
  }
}
