*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: black;
}

#container {
    background: #ffffff;
    width: 100%;
    padding: 20px;
    /* box-shadow: 0px 0px 10px 0px #cccccc; */
    border-radius: 10px;
    text-align: center;
    background-image: url('../assets/istockphoto-1284041267-612x612.jpg');;
    background-repeat: no-repeat;
    background-size: cover;
    background-image:transparent or rgba(47, 41, 41, 0);
}

header {
    margin-bottom: 30px;
    color: #cccccc;
}

.title {
    height: 1px;
    width: 80px;
    margin: 20px auto;
    background: #cccccc;
}

#chartBox {
    max-width: 70%;
    min-height: 400px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.country-container {
    height: 3rem;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    margin-left: 15%;
    font-size: smaller;
  }

.myChart {
    width: 45%;
    height: 100%;
    margin-right: 2.5%;
  }

.spinner {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 5px solid #cccccc;
    border-top-color: #3f51b5;
    animation: spin 1s ease-in-out infinite;
}



.continent {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

button {
    background: #3f51b5;
    color: #ffffff;
    border: 0;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    background: #1a237e;
}

