/*--------------------------  This Is For Graph Page ------------------------*/

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16;
}
}

.header {
    min-height: 60vh;
    width: auto;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("images/COVID-19.jpeg");
    background-position: center;
    background-size: cover;
    position: relative;
}

.header_title {
    text-align: top left;
    margin: 5;
    padding-top: 0px;
}
.my_title_date{
    text-align: center;
    font-weight: lighter;
}
.chart {
    margin: 50px auto;
    width: 1500px;
    height: 500px;
    text-align: center;
    padding-right: 100px;
}

.barChart {
    padding: 0;
    margin: 0;
    text-align: center;
}

.barChart2 {
    padding: 0;
    margin: 0;
    text-align: center;
}

.my_title {
    text-align: center;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 0;
}

.icons {
    color: black;
}
nav {
    display: flex;
    padding: 5% 1%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

nav .fa {
    display: none;
}
.nav-links {
    flex: 1;
    text-align: left;
    font-size: 22px;
    padding-top: 1000;
    padding-bottom: 5px;
    padding-right: 20px;
    color: white;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 4px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 4px;
    background: white;
    display: block;
    margin: auto;
    transition: 0.9s;
}

.nav-links ul li:hover::after {
    width: 100%;
}
#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 10px;
    /* Place the button at the bottom of the page */
    right: 10px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: white;
    /* Set a background color */
    color: darkblue;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 20px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 26px;
    /* Increase font size */
}

#myBtn:hover {
    background-color: darkblue;
    color: white;
    /* Add a dark-grey background on hover */
}


/*--- Graph Page ---*/

.sub-header {
    height: 18vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("images/COVID-19.jpeg");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}

.sub-header h1 {
    margin-top: 500px;
}

/*----- Footer ------*/

.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4 {
    margin-bottom: 5px;
    margin-top: 20px;
    font-weight: 600;
}
.rkp {
    font-weight: lighter;
}


