html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
  background-color: #116336;
  background: -moz-radial-gradient(center, ellipse cover, #16a757 0%, #116336 85%);
	/* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #16a757 0%, #116336 85%);
	/* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #16a757 0%, #116336 85%);
  min-height: 100vh;
  min-width: 100vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #efefef;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

html, body, #root {
  height: 100%;
  width: 100%;
}

.app {
position:absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.heading {
  padding: .75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.heading h1 {
  letter-spacing: -.085rem;
  padding: 0.2rem 1.2rem;
  border-radius: 20% 5% 20% 5%/5% 20% 25% 20%;
  font-size: 1.5rem;
}

.heading p, button span {
  letter-spacing: -.03rem;
}

.form input {
  color: #efefef;
  font-weight: 400;
  text-align: center;
  box-sizing: border-box;
  background-color: transparent;
  padding: 0.7rem;
  border: solid 3px transparent;
  border-bottom: solid 1px #fff;
  max-width: 200px;
  font-size: 1rem;
}

.controls, .form input {
  display: flex;
  flex-direction: column;
}

::placeholder {
  color: #efefef;
  opacity: .35;
  font-size: .9rem;
  text-align: center;
  font-weight: 300;
}

button {
  padding: 0;
  color: #333;
  width: 160px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  transition: .5s;
  outline: none;
  font-weight: 500;
}

button:nth-of-type(1) {
  margin-top: 30px;
}

button:nth-of-type(2), button:nth-of-type(3) {
  margin-top: 10px;
}

button:hover {
  cursor: pointer;
}

.yellow {
  background-color: #ffbb4b;
}

.red {
  background-color: red;
  color: #efefef;
}

button span {
  font-size: 1rem;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

li {
  text-align: left;
  position: relative;
  padding: 0.5rem;
}


/* my adds */

.heading {
  color: #efefef;
  font-weight: 900;
}

.heading p {
  font-weight: 300;
}

.heading span {
  color: #f9bb4b;
}

.round-info {
  width: 60%;
  padding-top: 5%;
}

.round-info div {
  display: flex;
  justify-content: space-between;
}

.round-info span {
  font-weight: 600 !important;
}

.controls div  {
  display: inline;
  padding: 5px;
}

h3 {
  margin: .25rem 0;
  font-weight: 400;
}

/* table */

table {
  background-color: #efefef;
  min-width: 100%;
  color: #333;
  border-collapse: collapse;
}

th {
  min-width: 120px;
}

thead {
  font-weight: 500;
}

tbody {
  font-weight: 300;
}

.table-head {
  background:#efefef;
}

.top-half, .bottom-half {
  display: flex;
}

.top-half {
  flex-direction: row;
}

.bottom-half {
  flex-direction: column;
  padding-top: 5%;
}

.flex-true-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

tr:nth-child(even) {
  background-color: #fff;
}

tr:nth-child(odd) {
  background-color: #efefef;
}

.section-1 {
  width: 300px
}

.section-2 {
  width: 300px;
}

.section-3 {
  width: 600px;
}

@media screen and (max-width: 1000px) {
  .app {
    padding-left: 15%;
  }
}

@media screen and (max-width: 768px) {
  .app {
    padding-left: 10%;
  }
}

@media screen and (max-width: 600px) {
  .top-half {
    flex-direction: column;
  }
  .app {
    padding-left: 0;
  }
  .section-1, .section-2, .section-3 {
    width: 100vw;
  }
  .section-2 {
    padding-top: 7%;
  }
  .section-3 {
    padding-top: 10%;
  }
  .rounds {
    max-height: 1000%;
    overflow: scroll;
  }
  th {
    min-width: 65px;
  }
}