/**
 * index.scss
 * - Add any styles you want here!
 */

body {
  background: #dbdbdb;
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
  height:1000px;
  width:500px;
}

.page {
    max-width: 400px;
    margin: 50px auto 0 auto;
    text-align: center;
}

.white {
    background: #ffffff;
}
h1 {
  font-size: 2em;
  text-transform: uppercase;
}


ul {
  list-style-type: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  width: 250px;
  background-color: #f1f1f1;
  text-align: left;
}

input[type=text] {
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  width: 90%;
  padding: 4px 8px;
  margin: 8px 0;
  box-sizing: border-box;
}


.dropbtn {
  background-color: #3498DB;
  color: white;  width: 230px;
  padding: 8px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;  
  text-align: center;

}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #97cc53;
    color: #dddddd;
  }

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 



.boxedDiv {
  background: #d3e0eb;
  margin: 1em;
  padding: .7em 0 .7em 0;
  border: .2em;
  border-style: solid;
  border-radius: .7em;
  border-color: #848484;
}

/*formDiv is for the Students Name*/
#formDiv {
  margin: 1em;
  background: #d3e0eb;
  padding: 2em;
  border: .2em;
  border-style: solid;
  border-radius: .7em;
  border-color: #848484;
}


button {
    background-color: #4CAF50;
    border: none;
    border-radius: .5em;
    color: white;
    padding: 15px 32px;
    margin-top: .3em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    cursor: pointer;
}

#goButton {
    visibility: hidden;
    padding: 2px 32px;
    border-radius: .2em;
}

#newTimer {
    visibility: hidden;
    padding: 2px 32px;
    border-radius: .2em;
}


.orange {
  background-color: #f29133;
}

.ltGreen {
  background-color: #c2ff7b;
  color: #8d8d8d;
}

.badge {
  height: 200px;
  width: 200px;
  display: table-cell;
  font-size: 2em;
  color: #000000;
  font-weight: bolder;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  border-radius: 50%;
  border: 2px;
  border-style: solid;
  border-color: gray;
  background: yellow;
  float: none;
  padding:0;
}

.badge:hover {
    background-color: #97cc53;
    color: white;
}

.badge:active {
    background-color: #4CAF50;
    color: white;
}




.block {
    padding: 4px;
    margin: 5px, 0, 5px, 0;
     
}

.clear {
     clear: both;
} 



