* {
    margin: 0;
    padding: 0;
}
body {
    height: 100%;
    width: 100%;
    font-family: 'News Cycle', sans-serif;
}
.covid-header {
    font-weight: 700;
    font-size: 67px;
}
.covid-jumbotron {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.api-data {
    width: 800px;
    margin: 10px auto;
}
#covid-foot {
    padding-bottom: 10px;
    padding-left: 10px;
}
#github-foot {
    margin: 0 10px 0 10px;
}
#foot-name {
    color: white;
}
.data-boxes .country-index {
    border: 2px solid black;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 20px;
}
.data-boxes .country-index span{
    font-size: 24px;
    font-weight: 700;
}
.total-data{
    display: flex;
    width: 800px;
    height: 200px;
    /* padding: 0 50px 0 50px; */
    justify-content: space-between;
}
.new-data {
    margin-top: 60px;
    display: flex;
    width: 800px;
    height: 200px;
    padding: 0 10px 0 10px;
    justify-content: space-between;
}
.total-data div{
    width: 235px;
    height: 200px;
    font-size: 32px;
    text-align: center;
    /* background-color: rgb(137, 137, 137); */
    color: white;
}
.total-data div p{
    margin: 50px 0 10px 0;
}
.total-data div:nth-child(1){
    background: #f78b0f;
}
.total-data div:nth-child(2){
    background: #ff1111;
}
.total-data div:nth-child(3){
    background: #32b336;
}
.new-data div{
    width: 235px;
    height: 200px;
    color: white;
    font-size: 32px;
    text-align: center;
}
.new-data div p{
    margin: 50px 0 10px 0;
}
.new-data div:nth-child(1){
    background: #e0bf07;
}
.new-data div:nth-child(2){
    background: #ff5e00;
}
.new-data div:nth-child(3){
    background: #7ce922;
}
.data-span {
    font-weight: 700;
}
label {
    font-size: 24px;
    font-weight: bold;
}
#submit-btn {
    margin-top: 5px;
    font-size: 18px;
}
nav {
    font-size: 18px;
    color: white;
    background-color: lightcoral;
}
nav ul {
    list-style: none;
}
nav li {
    text-decoration: none;
    display: inline-block;
    /* margin: 30px; */
    padding: 10px 20px;
}
.covid-nav li a {
    color: inherit; 
    text-decoration-line: none;
}
#tracker{
    background-color: rgb(104, 187, 184);
    border-radius: 40px;
    padding: 10px 25px;
}
#home:hover {
    cursor: pointer;
    border-bottom: 2px rgb(104, 187, 184) solid;
}
/* #tracker:hover {
    background-color: rgb(104, 187, 184);
    border-radius: 40px;
    padding: 10px 25px;
} */
#test:hover {
    cursor: pointer;
    border-bottom: 2px rgb(104, 187, 184) solid;
}
footer {
    margin-top: 142px;
}
@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .api-data {
      width: 100%;
    }
    .total-data {
        width: 98%;
    }
    .data-span {
        font-size: 22px;
        font-weight: 700;
    }
    #data-death-span {
        margin-top: 300px;
    }
    #total-confirmed {
        width: 32%;
        height: 80%;
        /* height: fit-content; */
    }
    #total-death {
        width: 32%;
        height: 80%;
    }
    #total-recovered {
        width: 32%;
        height: 80%;
    }
    .total-data div p {
        font-size: 18px;
    }

    .new-data {
        width: 98%;
    }
    #new-confirmed {
        width: 32%;
        height: 80%;
    }
    #new-death {
        width: 32%;
        height: 80%;
    }
    #new-recovered {
        width: 32%;
        height: 80%;
    }
    .new-data div p{
        font-size: 18px;
    }
    nav {
        width: 100%;
    }
  }