body { 
    background-color: aquamarine;
    font-family: "Roboto", sans-serif, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/*Centering the title text and adding animat.css (which needs a duration )*/
.Head-Title {
    text-align: center;
    animation: fadeInDown;
    animation-duration: 3s;
    padding: 0%;
}

.Ticker-Section {
    padding: 1%;
    margin: auto;

}
/*  FIXED Ticker WRAPPER */
.hwrap {
    overflow: hidden; /* HIDE SCROLL BAR */
    background: aliceblue;
  }
   
  /* MOVING TICKER WRAPPER */
  .hmove {
      display: flex; 

}
  
  /* ITEMS - INTO A LONG HORIZONTAL ROW */
  .hitem {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    border-color: black;
  }
   
  /* ANIMATION - RIGHT TO LEFT */
  /* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
  @keyframes tickerh {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-200%, 0, 0); }
  }
  .hmove { animation: tickerh linear 15s infinite; }
  .hmove:hover { animation-play-state: paused; }


img {
    border: 15px black;
    width: 200px
}

nav {
    overflow: hidden;
    background-color: black;
}
nav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 26px;
    text-decoration: none;
    font-size: 15px;

}
nav a:hover {
    background-color: aliceblue;
    color: black;
}
.ticker {
    text-decoration: none;
}
.ticker:hover {
    text-decoration: underline;
    color: blue !important;
    cursor: pointer;
}
.chart {
    margin-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.chart #chart_div {
    padding: 0 0px 10px 10px;
}