* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  max-width: 100vw;
  width: 100vw;
  overflow-x: hidden;
}
html {
  font-size: 62.5%;
}
body {
  background-color: #666666;
  font-size: 1.4rem;
  font-weight: 400;
  font-variant: normal;
  font-style: normal;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
h1,
h2 {
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
}
img {
  display: block;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row.bottom {
  align-items: flex-end;
}
.top_screen {
  width: 90%;
  padding: 5rem 5% 1rem 5%;
}
.top_screen .row {
  width: 90vw;
}
.top_screen h1 {
  text-transform: uppercase;
  color: white;
}
.top_screen .crown {
  background-color: #dddddd;
  padding: 3%;
  border-radius: 15%;
}
.top_screen .crown img {
  width: 20px;
  height: auto;
}
.top_screen .user img {
  width: 35px;
  height: auto;
}
nav {
  background-color: white;
  padding: 1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}
nav.row {
  justify-content: space-around;
}
.selected_menu_option {
  background-color: white;
  height: 3px;
  margin-top: -3px;
}
.selected_menu_option span {
  width: calc(33.333333333333336%);
}
.selected_menu_option span.active {
  border-bottom: thick solid orange;
}
.select_currency {
  background-color: #cccccc;
  padding: 2rem 0;
  justify-content: center;
}
.select_currency input {
  width: 88vw;
  border-radius: 10px;
  height: 5rem;
  padding-left: 2vw;
  outline: none;
  border: none;
  font-size: 1.4rem;
}
.select_currency input:focus::-webkit-input-placeholder {
  color: transparent;
}
.select_currency input:focus:-moz-placeholder {
  color: transparent;
}
.select_currency input:focus::-moz-placeholder {
  color: transparent;
}
.select_currency input:focus:-ms-input-placeholder {
  color: transparent;
}
.predictions {
  justify-content: center;
}
.predictions h2 {
  text-transform: uppercase;
  color: white;
  padding: 2rem 0;
  text-align: center;
}
.predictions .container {
  background-color: #cccccc;
  width: 100vw;
  padding: 2rem 5vw;
}
.predictions .container form .row {
  background-color: white;
  border-radius: 10px;
  padding: 0.5rem 0.4rem 0.5rem 2rem;
  margin-bottom: .5rem;
}
.predictions .container form .row .label {
  font-size: 1.7rem;
  width: 72%;
}
.predictions .container form .row .explain {
  border: 3px solid gray;
  width: 6vw;
  height: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: gray;
  border-radius: 50%;
  font-weight: 800;
}
.predictions .container form .row .input input {
  width: 13vw;
  height: 5vh;
  padding: 2vw;
  text-align: center;
  border-radius: 10px;
  outline: 0;
  color: white;
  border: 0;
}
.predictions .container form .row .input.price input {
  background: #66cc33;
}
.predictions .container form .row .input.market_cap input {
  background: #6699cc;
}
.predictions .container form .row .input.bitcoin_share input {
  background: #990099;
}
.predictions .container form .row .input.time_period input {
  background: #666666;
}
.analysis {
  justify-content: center;
}
.analysis h2 {
  text-transform: uppercase;
  color: white;
  padding: 2rem 0;
  text-align: center;
}
.analysis .container {
  background-color: #cccccc;
  width: 100vw;
}
.analysis .container .row {
  padding: 0 1%;
  width: 100%;
  font-size: 1.7rem;
  border-bottom: 1px solid lightgray;
}
.analysis .container .row.heading {
  justify-content: flex-end;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.analysis .container .row.heading .label {
  width: 33%;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}
.analysis .container .row.heading .label:last-child {
  background: #666666;
  color: white;
}
.analysis .container .row.heading .label:first-child {
  background-color: white;
}
.analysis .container .row div {
  width: 33%;
  padding: 0.5rem;
  font-size: 1.5rem;
  background-color: white;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.analysis .container .row div:first-child {
  justify-content: flex-start;
}
.analysis .container .row div:first-child:not(.label) {
  border-right: 1px solid lightgray;
}
.analysis .container .row div:last-child {
  margin-left: 1%;
}
.analysis .container .row.devider {
  height: 0.5rem;
}
.analysis .container .row.price div:last-child {
  background: #66cc33;
  color: white;
}
.analysis .container .row.total_market_cap div:last-child {
  background: #6699cc;
  color: white;
}
.analysis .container .row.btc_market_share div:last-child {
  background: #990099;
  color: white;
}
