@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700");
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 100em) {
  html {
    font-size: 58%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 40%;
  }
}

body {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat";
}

h1 {
  font-size: 5.7rem;
}

h2 {
  font-size: 4.4rem;
}

h3 {
  font-size: 3.4rem;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

body {
  background: white;
  height: 100vh;
}
.navigation {
  display: flex;
  justify-content: space-between;
  height: 10rem;
  align-items: center;
  padding: 0 5rem;
}
@media only screen and (max-width: 37.5em) {
  .navigation {
    flex-direction: column;
  }
}
.navigation h1 {
  color: #054f8e;
  font-size: 5rem;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 100em) {
  .navigation h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 75em) {
  .navigation h1 {
    font-size: 3rem;
  }
}
.navigation input {
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  width: 15rem;
  border-radius: 2.5rem;
  border: none;
  outline: none;
  font-weight: 600;
  text-align: center;
  background-color: white;
  font-family: "Montserrat";
}

.container {
  display: flex;
  height: calc(100vh - 10rem);
  font-size: 1.4rem;
}
@media only screen and (max-width: 75em) {
  .container {
    flex-direction: column-reverse;
    height: auto;
  }
}
.container .left-side {
  margin-top: 10rem;
  width: 55%;
  padding-left: 5rem;
  padding-right: 20rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 100em) {
  .container .left-side {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 75em) {
  .container .left-side {
    width: 100%;
    padding: 0 5rem;
    padding-bottom: 1rem;
  }
}
.container .left-side h2 {
  letter-spacing: 0.4rem;
  margin-right: 2rem;
  color: #054f8e;
  font-size: 4rem;
}
@media only screen and (max-width: 100em) {
  .container .left-side h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .container .left-side h2 {
    font-size: 2.5rem;
  }
}
.container .left-side .present {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 100em) {
  .container .left-side .present {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    text-align: center;
  }
}
.container .left-side .present .typeList {
  display: flex;
}
@media only screen and (max-width: 100em) {
  .container .left-side .present .typeList {
    margin: 0 auto;
  }
}
.container .left-side .present .typeList .type {
  padding: 0.6rem 2.8rem;
  margin: 0 0.4rem;
  border-radius: 2.5rem;
  color: white;
  box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.25);
  font-weight: 800;
}
@media only screen and (max-width: 100em) {
  .container .left-side .present .typeList .type {
    font-weight: 600;
    font-size: 1.4rem;
    padding: 0.3rem 2.2rem;
  }
}
.container .left-side p {
  color: #777777;
}
@media only screen and (max-width: 100em) {
  .container .left-side p {
    margin-top: 1rem;
    text-align: center;
  }
}
.container .left-side .btn-group {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 100em) {
  .container .left-side .btn-group {
    margin-top: 3rem;
  }
}
.container .left-side .btn-group button {
  width: 15rem;
  padding: 0.75rem 0.75rem;
  border-radius: 2.5rem;
  border: 1px solid #c95f93;
  outline: none;
  font-weight: 800;
  cursor: pointer;
  background-color: white;
  color: #c95f93;
}
@media only screen and (max-width: 37.5em) {
  .container .left-side .btn-group button {
    font-weight: 400;
  }
}
.container .left-side .btn-group button:hover {
  background-color: #c95f93;
  color: white;
}
.container .left-side .stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 0.5rem;
}
@media only screen and (max-width: 100em) {
  .container .left-side .stats {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .container .left-side .stats {
    grid-template-columns: 1fr;
  }
}
.container .left-side .stats .progress .label {
  display: flex;
  justify-content: space-between;
}
.container .left-side .stats .progress .label-value {
  font-weight: 600;
}
.container .left-side .stats .progress progress {
  appearance: none;
  width: 100%;
  border-radius: 2.5rem;
  border: none;
  background-color: lightgrey;
  height: 18px;
}
.container .left-side .stats .progress progress::-webkit-progress-bar {
  border-radius: 2.5rem;
  background-color: lightgrey;
}
.container .right-side {
  width: 45%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .container .right-side {
    width: 100%;
  }
}
.container .right-side img {
  margin-top: 5rem;
  width: auto;
  height: 70%;
}
@media only screen and (max-width: 75em) {
  .container .right-side img {
    width: 30rem;
    height: auto;
    margin-top: 0rem;
  }
}

.theme-normal {
  background: linear-gradient(100deg, white 50%, #d0d0b8 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-normal {
    background: linear-gradient(5deg, white 55%, #d0d0b8 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-normal {
    background: linear-gradient(5deg, white 65%, #d0d0b8 65.1%) no-repeat;
  }
}
.theme-normal progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #908f5f;
}
.theme-normal progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #908f5f;
}
.theme-normal .btn-group button {
  border: 1px solid #908f5f !important;
  color: #908f5f !important;
}
.theme-normal .btn-group button:hover {
  background-color: #908f5f !important;
  color: white !important;
}

.bg-type-normal {
  background-color: #908f5f;
}

.theme-fire {
  background: linear-gradient(100deg, white 50%, #f6ba8e 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-fire {
    background: linear-gradient(5deg, white 55%, #f6ba8e 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-fire {
    background: linear-gradient(5deg, white 65%, #f6ba8e 65.1%) no-repeat;
  }
}
.theme-fire progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #d96712;
}
.theme-fire progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #d96712;
}
.theme-fire .btn-group button {
  border: 1px solid #d96712 !important;
  color: #d96712 !important;
}
.theme-fire .btn-group button:hover {
  background-color: #d96712 !important;
  color: white !important;
}

.bg-type-fire {
  background-color: #d96712;
}

.theme-water {
  background: linear-gradient(100deg, white 50%, #c0d2f9 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-water {
    background: linear-gradient(5deg, white 55%, #c0d2f9 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-water {
    background: linear-gradient(5deg, white 65%, #c0d2f9 65.1%) no-repeat;
  }
}
.theme-water progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #346fec;
}
.theme-water progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #346fec;
}
.theme-water .btn-group button {
  border: 1px solid #346fec !important;
  color: #346fec !important;
}
.theme-water .btn-group button:hover {
  background-color: #346fec !important;
  color: white !important;
}

.bg-type-water {
  background-color: #346fec;
}

.theme-electric {
  background: linear-gradient(100deg, white 50%, #fbe68e 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-electric {
    background: linear-gradient(5deg, white 55%, #fbe68e 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-electric {
    background: linear-gradient(5deg, white 65%, #fbe68e 65.1%) no-repeat;
  }
}
.theme-electric progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #e7bc09;
}
.theme-electric progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #e7bc09;
}
.theme-electric .btn-group button {
  border: 1px solid #e7bc09 !important;
  color: #e7bc09 !important;
}
.theme-electric .btn-group button:hover {
  background-color: #e7bc09 !important;
  color: white !important;
}

.bg-type-electric {
  background-color: #e7bc09;
}

.theme-grass {
  background: linear-gradient(100deg, white 50%, #b4df9a 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-grass {
    background: linear-gradient(5deg, white 55%, #b4df9a 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-grass {
    background: linear-gradient(5deg, white 65%, #b4df9a 65.1%) no-repeat;
  }
}
.theme-grass progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #61ab35;
}
.theme-grass progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #61ab35;
}
.theme-grass .btn-group button {
  border: 1px solid #61ab35 !important;
  color: #61ab35 !important;
}
.theme-grass .btn-group button:hover {
  background-color: #61ab35 !important;
  color: white !important;
}

.bg-type-grass {
  background-color: #61ab35;
}

.theme-ice {
  background: linear-gradient(100deg, white 50%, #e1f4f3 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-ice {
    background: linear-gradient(5deg, white 55%, #e1f4f3 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-ice {
    background: linear-gradient(5deg, white 65%, #e1f4f3 65.1%) no-repeat;
  }
}
.theme-ice progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #71cbc7;
}
.theme-ice progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #71cbc7;
}
.theme-ice .btn-group button {
  border: 1px solid #71cbc7 !important;
  color: #71cbc7 !important;
}
.theme-ice .btn-group button:hover {
  background-color: #71cbc7 !important;
  color: white !important;
}

.bg-type-ice {
  background-color: #71cbc7;
}

.theme-fighting {
  background: linear-gradient(100deg, white 50%, #e1736f 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-fighting {
    background: linear-gradient(5deg, white 55%, #e1736f 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-fighting {
    background: linear-gradient(5deg, white 65%, #e1736f 65.1%) no-repeat;
  }
}
.theme-fighting progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #98241f;
}
.theme-fighting progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #98241f;
}
.theme-fighting .btn-group button {
  border: 1px solid #98241f !important;
  color: #98241f !important;
}
.theme-fighting .btn-group button:hover {
  background-color: #98241f !important;
  color: white !important;
}

.bg-type-fighting {
  background-color: #98241f;
}

.theme-poison {
  background: linear-gradient(100deg, white 50%, #cd7acb 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-poison {
    background: linear-gradient(5deg, white 55%, #cd7acb 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-poison {
    background: linear-gradient(5deg, white 65%, #cd7acb 65.1%) no-repeat;
  }
}
.theme-poison progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #7e307d;
}
.theme-poison progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #7e307d;
}
.theme-poison .btn-group button {
  border: 1px solid #7e307d !important;
  color: #7e307d !important;
}
.theme-poison .btn-group button:hover {
  background-color: #7e307d !important;
  color: white !important;
}

.bg-type-poison {
  background-color: #7e307d;
}

.theme-ground {
  background: linear-gradient(100deg, white 50%, #f2e3bb 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-ground {
    background: linear-gradient(5deg, white 55%, #f2e3bb 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-ground {
    background: linear-gradient(5deg, white 65%, #f2e3bb 65.1%) no-repeat;
  }
}
.theme-ground progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #daad3a;
}
.theme-ground progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #daad3a;
}
.theme-ground .btn-group button {
  border: 1px solid #daad3a !important;
  color: #daad3a !important;
}
.theme-ground .btn-group button:hover {
  background-color: #daad3a !important;
  color: white !important;
}

.bg-type-ground {
  background-color: #daad3a;
}

.theme-flying {
  background: linear-gradient(100deg, white 50%, #f0ebfd 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-flying {
    background: linear-gradient(5deg, white 55%, #f0ebfd 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-flying {
    background: linear-gradient(5deg, white 65%, #f0ebfd 65.1%) no-repeat;
  }
}
.theme-flying progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #8661ee;
}
.theme-flying progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #8661ee;
}
.theme-flying .btn-group button {
  border: 1px solid #8661ee !important;
  color: #8661ee !important;
}
.theme-flying .btn-group button:hover {
  background-color: #8661ee !important;
  color: white !important;
}

.bg-type-flying {
  background-color: #8661ee;
}

.theme-psychic {
  background: linear-gradient(100deg, white 50%, #fcb8cd 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-psychic {
    background: linear-gradient(5deg, white 55%, #fcb8cd 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-psychic {
    background: linear-gradient(5deg, white 65%, #fcb8cd 65.1%) no-repeat;
  }
}
.theme-psychic progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #f72464;
}
.theme-psychic progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #f72464;
}
.theme-psychic .btn-group button {
  border: 1px solid #f72464 !important;
  color: #f72464 !important;
}
.theme-psychic .btn-group button:hover {
  background-color: #f72464 !important;
  color: white !important;
}

.bg-type-psychic {
  background-color: #f72464;
}

.theme-bug {
  background: linear-gradient(100deg, white 50%, #d5e752 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-bug {
    background: linear-gradient(5deg, white 55%, #d5e752 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-bug {
    background: linear-gradient(5deg, white 65%, #d5e752 65.1%) no-repeat;
  }
}
.theme-bug progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #7e8c14;
}
.theme-bug progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #7e8c14;
}
.theme-bug .btn-group button {
  border: 1px solid #7e8c14 !important;
  color: #7e8c14 !important;
}
.theme-bug .btn-group button:hover {
  background-color: #7e8c14 !important;
  color: white !important;
}

.bg-type-bug {
  background-color: #7e8c14;
}

.theme-rock {
  background: linear-gradient(100deg, white 50%, #d8c87a 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-rock {
    background: linear-gradient(5deg, white 55%, #d8c87a 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-rock {
    background: linear-gradient(5deg, white 65%, #d8c87a 65.1%) no-repeat;
  }
}
.theme-rock progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #8f7e2a;
}
.theme-rock progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #8f7e2a;
}
.theme-rock .btn-group button {
  border: 1px solid #8f7e2a !important;
  color: #8f7e2a !important;
}
.theme-rock .btn-group button:hover {
  background-color: #8f7e2a !important;
  color: white !important;
}

.bg-type-rock {
  background-color: #8f7e2a;
}

.theme-ghost {
  background: linear-gradient(100deg, white 50%, #a793c1 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-ghost {
    background: linear-gradient(5deg, white 55%, #a793c1 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-ghost {
    background: linear-gradient(5deg, white 65%, #a793c1 65.1%) no-repeat;
  }
}
.theme-ghost progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #5a4477;
}
.theme-ghost progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #5a4477;
}
.theme-ghost .btn-group button {
  border: 1px solid #5a4477 !important;
  color: #5a4477 !important;
}
.theme-ghost .btn-group button:hover {
  background-color: #5a4477 !important;
  color: white !important;
}

.bg-type-ghost {
  background-color: #5a4477;
}

.theme-dragon {
  background: linear-gradient(100deg, white 50%, #b79afd 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-dragon {
    background: linear-gradient(5deg, white 55%, #b79afd 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-dragon {
    background: linear-gradient(5deg, white 65%, #b79afd 65.1%) no-repeat;
  }
}
.theme-dragon progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #4c04fa;
}
.theme-dragon progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #4c04fa;
}
.theme-dragon .btn-group button {
  border: 1px solid #4c04fa !important;
  color: #4c04fa !important;
}
.theme-dragon .btn-group button:hover {
  background-color: #4c04fa !important;
  color: white !important;
}

.bg-type-dragon {
  background-color: #4c04fa;
}

.theme-dark {
  background: linear-gradient(100deg, white 50%, #a88974 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-dark {
    background: linear-gradient(5deg, white 55%, #a88974 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-dark {
    background: linear-gradient(5deg, white 65%, #a88974 65.1%) no-repeat;
  }
}
.theme-dark progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #513f32;
}
.theme-dark progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #513f32;
}
.theme-dark .btn-group button {
  border: 1px solid #513f32 !important;
  color: #513f32 !important;
}
.theme-dark .btn-group button:hover {
  background-color: #513f32 !important;
  color: white !important;
}

.bg-type-dark {
  background-color: #513f32;
}

.theme-steel {
  background: linear-gradient(100deg, white 50%, #f4f4f7 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-steel {
    background: linear-gradient(5deg, white 55%, #f4f4f7 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-steel {
    background: linear-gradient(5deg, white 65%, #f4f4f7 65.1%) no-repeat;
  }
}
.theme-steel progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #9999b9;
}
.theme-steel progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #9999b9;
}
.theme-steel .btn-group button {
  border: 1px solid #9999b9 !important;
  color: #9999b9 !important;
}
.theme-steel .btn-group button:hover {
  background-color: #9999b9 !important;
  color: white !important;
}

.bg-type-steel {
  background-color: #9999b9;
}

.theme-fairy {
  background: linear-gradient(100deg, white 50%, #f0d1e0 50.1%);
}
@media only screen and (max-width: 75em) {
  .theme-fairy {
    background: linear-gradient(5deg, white 55%, #f0d1e0 55.1%) no-repeat;
  }
}
@media only screen and (max-width: 37.5em) {
  .theme-fairy {
    background: linear-gradient(5deg, white 65%, #f0d1e0 65.1%) no-repeat;
  }
}
.theme-fairy progress::-webkit-progress-value {
  border-radius: 2.5rem;
  background-color: #c95f93;
}
.theme-fairy progress::-moz-progress-bar {
  border-radius: 2.5rem;
  background-color: #c95f93;
}
.theme-fairy .btn-group button {
  border: 1px solid #c95f93 !important;
  color: #c95f93 !important;
}
.theme-fairy .btn-group button:hover {
  background-color: #c95f93 !important;
  color: white !important;
}

.bg-type-fairy {
  background-color: #c95f93;
}
