body {
  font-family: sans-serif;
  background-color: #661177;
  color: white;
}

#container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

h1 {
  color: orange;
  margin-bottom: 30px;
}

form {
  display: inline-block;
  text-align: left;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}

input[type="number"] {
  width: 50px;
  font-size: 24px;
  font-weight: bold;
}

button[type="submit"] {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

#results {
  margin: 20px auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

#stunt-die,
#die-2,
#die-3,
#stunt-points,
#result,
#total {
  margin-bottom: 10px;
}

#stunt-die span,
#die-2 span,
#die-3 span,
#stunt-points span,
#total span {
  font-size: 24px;
  font-weight: bold;
}

#stunt-points {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 60px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

#stunt-points span {
  font-size: 48px;
  font-weight: bold;
}

#result {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 48px;
  animation: blink 1s linear infinite;
  text-align: center;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}