html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #111111;
    position: relative;
    font-family: 'Roboto',sans-serif !important;
    font-size: 1.125rem;
}
.center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.h100{
    height: 100%;
}
.w100{
    width: 100%;
}
.box{
    box-sizing: border-box;
}
button{
    border: none;
    text-decoration: none;
    background: rgb(0, 123, 255);
    color: #000;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    text-align: center;
    margin: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 123, 255,0.1),0 4px 6px -2px rgba(0, 123, 255,0.05);
}
input{
    border: none;
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: .5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    text-align: center;
    margin: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    outline: 0;
    width: calc(100% - 1rem);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255,0.1),0 4px 6px -2px rgba(255, 255, 255,0.05);
}
#run{
    width: calc(100% - 1rem);
    /* background: linear-gradient(135deg,#0ccda3 0,#c1fcd3 100%); */
}
#title{
    text-align: center;
    color: #fff;
}

#namelist{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    padding: 0;
    margin: 0.25rem;
}
#namelist li{
    list-style: none;
    margin: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    background: #fff;
    color: #000;
    font-size: 0.75rem;
    cursor: pointer;
}
#namelist li:hover{
    background: #ccc;
}
#namelist li::before{
    content: "✖";
    margin-right: 0.5rem;
}

button:hover{
    background: #0069d9;
}

#winner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: #111111b9;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}




.container-fluid {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  margin-right: auto !important;
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .container,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 540px;
  }
  .d-sm {
    display: flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .container,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md {
    max-width: 720px;
  }
  .d-sm,
  .d-md {
    display: flex !important;
  }
  .d-sm-none,
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .container,
  .container-xxl,
  .container-xl,
  .container-lg {
    max-width: 960px;
  }
  .d-sm,
  .d-md,
  .d-lg {
    display: flex !important;
  }
  .d-sm-none,
  .d-md-none,
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-xxl,
  .container-xl {
    max-width: 1140px;
  }
  .d-sm,
  .d-md,
  .d-lg,
  .d-xl {
    display: flex !important;
  }
  .d-sm-none,
  .d-md-none,
  .d-lg-none,
  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-xxl {
    max-width: 1320px;
  }
  .d-sm,
  .d-md,
  .d-lg,
  .d-xl,
  .d-xxl {
    display: flex !important;
  }
  .d-sm-none,
  .d-md-none,
  .d-lg-none,
  .d-xl-none,
  .d-xxl-none {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}
