html {
    background-color: #131313 !important;
}

body {
    font-family: 'Ubuntu Mono', monospace;
    margin: 0;
    padding: 0;
    background-color: #131313;
    color: #fff;

    display: flex;
    flex-direction: column;
    
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

footer {
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: center;
}

footer > * {
    margin: 0 10px;
}

a {
    color: greenyellow;
    text-decoration: none;
}

table {
    z-index: 1000;
    background-color: #131313;
    border-radius: 5px;
    padding: 10px;
}

#textContent {
    /*background-color: #131313;*/
    background-color: rgba(19,19,19,0.7);
    box-shadow: 6px 6px 20px 40px rgba(19,19,19,0.7);
    border-radius: 5px;
    padding: 10px;
    z-index: 5;
}

.first {
    color: gold;
    border: gold 5px solid;
    padding: 5px 10px;
    border-radius:50%;
}

.second {
    color: silver;
    border: silver 5px solid;
    padding: 5px 10px;
    border-radius: 50%;
}

.third {
    color: #cd7f32;
    border: #cd7f32 5px solid;
    padding: 5px 10px;
    border-radius: 50%;
}

.thm-card {
    max-width: 20%;
    margin: 0 auto;
    padding: 0 20px;
}


/* CSS FOR THROBBER */

#throbber {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20vh;
}

.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 48px;
  height: 48px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* CSS For Snowflakes */
#snow-container {  
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 500ms;
    z-index: 0;

    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; 
}
.snow {
    animation: fall ease-in-out infinite, sway ease-in-out infinite, rotate ease-in-out infinite;
    color: skyblue;
    position: absolute;

    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; 
    cursor: default;
}

@keyframes rotate {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

@keyframes fall {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      top: 100vh;
      opacity: 1;
    }
  }
  @keyframes sway {
    0% {
      margin-left: 0;
    }
    25% {
      margin-left: 50px;
    }
    50% {
      margin-left: -50px;
    }
    75% {
      margin-left: 50px;
    }
    100% {
      margin-left: 0;
    }
  }