@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    text-align: center;
}

.bg-canvas {
    width: 10vw;
    height: 10vh;
    position: absolute;
    object-fit: cover;
    z-index: -1;
}

.bg-canvas::after {
    content: "";
    background: url(covid19bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    z-index: 1;
}

.chart-container {
    align-content: center;
    align-self: center;
    margin: 10px auto;
    padding: 10px auto;
    position: relative;
    height: 40vh;
    width: 80vw;
}

.divisor {
    margin-top: 200px;
}

table {
    width: 100%;
    border: 1px solid #000;
}

th,
td {
    width: 25%;
    text-align: left;
    vertical-align: top;
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 0.3em;
    caption-side: bottom;
}

caption {
    padding: 0.3em;
    color: #fff;
    background: #000;
}

th {
    background: #eee;
}


/* .canvas1 {
    margin-bottom: 40px;
} */

.row {
    text-align: center;
    margin: auto 20px;
    /*     box-shadow: 0 0 10px darkblue; */
}

.col-md-4 {
    margin-bottom: 1%;
}

.title {
    margin-top: 5px;
    margin-bottom: 15px;
    font-family: Oswald;
    font-size: 2rem;
    text-shadow: 1px 1px 20px white, 0 0 25px white, 0 0 7px darkblue;
}

#form-data label {
    font-family: Oswald;
    font-size: 1.3em;
    padding: 5px;
}

#form-data input,
select,
option {
    margin-right: 10px;
    font-family: Oswald;
    font-size: 1.1rem;
}

#firstcountries {
    background: #00c0ef;
    border-radius: 5px;
}

#secondcountries {
    background: #cf00ef;
    border-radius: 5px;
}

.btn-md {
    cursor: pointer;
    background: green;
    color: #fbfbfb;
    font-family: Oswald;
    font-size: 1.4rem;
    padding: 5px;
    margin: 15px auto;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px black;
}

@media only screen and (max-width: 600px) {
    #form-data label {
        font-size: 0.9rem;
        padding: 5px;
    }
    #form-data input,
    select,
    option {
        margin-right: 30px;
        font-size: 0.9em;
    }
    .btn-md {
        font-size: 1rem;
        padding: 5px;
        margin: 1px auto;
    }
    /*
    .chart-container{
       width: 90vw;
       height: 80vh;
        }
    .canvas1 {
         width: 100% !important;
        height: 160% !important;
        margin-bottom: 40px;
    }
*/
}

.grafica2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.table {
    margin: 10px 10px;
    padding: 2%;
}

a {
    color: antiquewhite;
}

a:hover {
    color: cornflowerblue;
}

footer {
    margin: 10px, 10px;
    padding: 2%;
    color: #fbfbfb;
    background-color: #000;
}