/* ========================================
   LIFE EXPECTANCY PREDICTION
   Emily Castro
======================================== */

html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

/* ===============================
   START SCREEN
================================ */

#start-screen {
  position: absolute;

  top: 35px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 20;

  width: 430px;

  padding: 20px;

  text-align: center;

  background: rgba(0, 0, 0, 0.75);

  border: 2px solid #ff008c;

  color: white;

  box-shadow: 0 0 25px rgba(255, 0, 140, 0.25);
}

#start-screen h1 {
  color: #ff008c;

  font-size: 30px;

  font-weight: bold;

  letter-spacing: 2px;

  margin: 0 0 18px 0;
}

/* ===============================
   NAME INPUT
================================ */

#name-input {
  width: 100%;

  box-sizing: border-box;

  padding: 14px;

  background: black;

  border: 2px solid #ff008c;

  color: white;

  font-size: 16px;

  text-align: center;

  outline: none;
}

#name-input:focus {
  box-shadow: 0 0 12px rgba(255, 0, 140, 0.4);
}

/* ===============================
   MAIN BUTTON
================================ */

#submit-name {
  width: 100%;

  box-sizing: border-box;

  margin-top: 12px;

  padding: 14px;

  background: black;

  border: 2px solid #ff008c;

  color: #ff008c;

  font-weight: bold;

  font-size: 15px;

  cursor: pointer;

  transition: 0.2s;
}

#submit-name:hover {
  background: #ff008c;
  color: black;
}

/* ===============================
   CONSENT TEXT
================================ */

#consent-warning {
  margin-top: 12px;

  font-size: 12px;

  color: rgba(255,255,255,0.85);

  line-height: 1.4;
}

/* ===============================
   START OVER BUTTON
================================ */

#start-over {
  position: fixed !important;

  top: 15px !important;
  right: 15px !important;

  width: auto !important;
  height: auto !important;

  padding: 6px 10px !important;

  background: rgba(0, 0, 0, 0.85);

  border: 1px solid #ff008c;

  color: #ff008c;

  font-size: 11px;

  font-weight: bold;

  cursor: pointer;

  z-index: 9999;

  display: none;
}

#start-over:hover {
  background: #ff008c;
  color: black;
}

/* ===============================
   STATUS TEXT DIV
================================ */

#status-text {
  display: none;
}