.countdown {
    font-size: 80pt;
    text-wrap: wrap;
    margin: 0;
    padding: 0;
    color: white;
    font-family: sans-serif;
    text-align: center;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: rgb(0, 0, 0);
}

.countryselect {
    background-color: rgb(45, 0, 107);
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 50px;
    position: absolute;
    bottom: 0px;
    z-index: 2;
}

.country {
    margin: 3px;
    height: 40px;
    width: 90px;
    border-width: 0;
    background-color: rgb(73, 21, 146);
    color: white;
    font-weight: bolder;
    cursor: pointer;
    font-family: sans-serif;
}

.left {
    border-top-left-radius: 13px;
}

.right {
    border-top-right-radius: 13px;
}

.countdownbox {
    background: linear-gradient(0deg, rgba(45,0,107,0) 0%, rgba(45,0,107,1) 25%, rgba(45,0,107,1) 75%, rgba(45,0,107,0) 100%);
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .fireworks {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: block;
  }

  .countryIndicator {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 15pt;
    position: absolute;
    transform: translateY(70px);
  }