/* The Modal (background) */

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  user-select: none;
}

/* Modal Content/Box */

.modal-content {
  background-color: #F7F3E3;
  margin: 10% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%;
  max-width: 800px;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

input[type=radio] {
  visibility: hidden;
}

input[type=radio]+label {
  font-size: 60px;
  margin: 10px;
  padding: 10px;
  border-color: transparent;
  border-width: 4px;
  border-style: solid;
  border-radius: 10px;
  cursor: pointer;
}

input[type=radio]:checked+label {
  border-color: #43434C;
}

#radio-container {
  display: flex;
  justify-content: center;
}

#depth-selector {
  font-size: 20px;
}

a.button {
  display: inline-block;
  padding: 0.7em 1.4em;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.15em;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #3369ff;
  box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  text-align: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}

a.button:active {
  top: 0.1em;
}

@media all and (max-width:30em) {
  a.button {
    display: block;
    margin: 0.4em auto;
  }
}

#reset-container{
  display: flex;
  justify-content: center;
}

.termination-container{
  display: flex;
  justify-content: center;
}