.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
  .btcIcon {
    animation: btcIcon infinite 5s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes btcIcon {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Desktop */
.Nav {
  padding: 15px;
  background-color: gold;
  display: flex;
  justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  font-weight: bold;
}
.price-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 500px;
  height: 300;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid black;
  border-radius: 5px;
  background-color: gold;
}
.Chart {
  display: flex;
  justify-content: center;
  width: 650px;
  height: 400px;
  margin: auto;
}
.News {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 700px;
  margin: auto;
  padding-right: 50px;
  border-right: solid black 1px;
}
.AdditionalResources {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  margin-top: 0;
}
.Divider {
  border-top: 10px solid gold;
}
.videoembed {
  padding: 50px;
  border: 1px solid black;
  border-radius: 15px;
  border-style: inset;
  margin-bottom: 100px;
  background-color: gray;
}
.newsResources {
  display: flex;
  flex-direction: row;
  margin: auto;
}
.keynotes {
  display: flex;
  max-width: 500px;
  flex-direction: column;
  margin: auto;
}
.note {
  font-size: 24px;
}
.btcIcon {
  width: 30px;
}
/* Mobile */
@media (max-width: 600px) {
  .Nav {
    padding: 15px;
    background-color: gold;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    font-weight: bold;
  }
  .price-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    height: 300;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: gold;
  }
  .Chart {
    display: flex;
    justify-content: center;
    width: 350px;
    height: 300px;
    margin: auto;
  }
  .News {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 700px;
    margin: auto;
    padding-right: 50px;
  }
  .AdditionalResources {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    margin-top: 0;
  }
  .Divider {
    border-top: 10px solid gold;
  }
  .videoembed {
    padding: 50px;
    border: 1px solid black;
    border-radius: 15px;
    border-style: inset;
    margin: auto;
    margin-bottom: 100px;
    margin-right: 15px;
    width: 275px;
    height: 150px;
    background-color: gray;
  }
  .newsResources {
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .keynotes {
    display: flex;
    max-width: 500px;
    flex-direction: column;
    margin: auto;
  }
  .note {
    font-size: 24px;
  }
  .fearGreed {
    width: 300px;
  }
  .btcIcon {
    width: 30px;
  }
}
