/* Add your custom styles here */
body{
    font-family: 'Arial', sans-serif;
    margin: 20px; 
    background-color: #e5e5f7;
    opacity: 0.8;
    background-image: radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
    background-size: 10px 10px;
}

.chart-container {
    margin-bottom: 10px; 
    border-bottom: 2px solid #black; 
    padding-bottom: 5px; 
}4
.chart-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px; 
}

.axis-label {
    font-size: 14px;
    font-weight: bold;
}

/* Default color*/
.bar {
    fill: lightsteelblue;
}

/* When hover */
.bar:hover {
    fill: blue;
}

/* Color for bars from 2020 onwards */
.bar.covid {
    fill: steelblue;
}

/* Hover color for bars from 2020 onwards */
.bar.covid:hover {
    fill: darkblue;
}

/* Styling of charts */
/*Deleted Chart 1, #chart1, */#chart2, #chart3 {
    margin-bottom: 20px; /
    width: 900px; 
    height: 200px; 
}

#chart2, #chart3 {
    margin-top: 20px; 
}

svg {
    display: block;
    margin: 0 auto;
}

select {
    font-size: 14px;
}

p {
    bottom: 20px; 
    left: 100px; 
}


nav {
  background-color: #333;
  overflow: hidden;
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav a:hover {
  background-color: #ddd;
  color: black;
}

