html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background: #000;
  overflow: hidden;
}
#chartdiv {
  width: 100%;
  height: 100%;
  position: relative;
}
#icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 115px;
  z-index: 12;
}
::selection {
  color: #304ffe;
  background: #151515;
        }
::-moz-selection {
  color: #304ffe;
  background: #151515;
}
#search-bar {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 215px;
  z-index: 21;
  display: flex;
  justify-content: center;
}
#search-bar input {
  border: 1.75px solid #212121;
  width: 100%;
  padding: 12px;
  border-radius: 90px;
  font-size: 15.75px;
  backdrop-filter: blur(21px);
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}
#search-bar input::placeholder {
  color: rgba(255,255,255,0.5);
}
#country-container {
  width: 75%;
  position: absolute;
  bottom: 15px;
  left: 50%;
  border-radius: 15px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(21px);
  padding: 15.75px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 9px;
  max-height: 175px;
  overflow-y: auto;
  z-index: 21;
  border: 1px solid #303030;
}
.country-card {
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 300;
  text-align: center;
  padding: 12px;
  border-radius: 9px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.21s ease;
  user-select: none;
}
#country-container::-webkit-scrollbar {
  width: 1px;
}
h5 {
font-weight: 400;
font-size: 1.45em;
margin: 5px 15px;
}
h6 {
font-weight: 300;
font-size: 0.75em;
margin: 0 15px;
}
#info {
position: sticky;
bottom: 245px;
left: 0;
width: 100%;
color: white;
text-align: center;
z-index: 12;
}