body {
  font-family: "Roboto", sans-serif;
  background-position: center;
  background-size: cover; 
  background-repeat: no-repeat, repeat;
  background-color: #09090b ;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container-dice {
  color: #fff;
  background-color: #27272a;
  border: solid 1px #52525b;
  padding-top: 25px;
  padding-bottom: 85px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.dice {
  font-family: "Roboto Mono", monospace;
  margin-top: 20px;
}

button {
  color: #fff;
  background-color: #4c1d95;
  border: solid 1px #7c3aed;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 7px;
  padding: 15px 35px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #2e1065;
  transform: scale(1.1);
}

input {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 5px;
}

#result {
  font-size: 28px;

  color: #fff;
  background-color: #4c1d95;
  border: solid 1px #7c3aed;
  padding: 25px 30px;
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 40px;
  position: relative;
  align-items: center;
  justify-content: center;
}

h1::after {
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.dice-container {
  position: relative;
  display: inline-block;
}

.input-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #27272a;
  padding: 10px;
  border: solid 1px #52525b;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.input-container input {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100px;
  padding: 5px;
  margin-right: 5px;
  border-radius: 5px;
  border: 1px solid #7c3aed;
  color: #fff;
  background-color: #4c1d95;
}

.roll-btn {
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 5px 10px;
  color: #fff;
  background-color: #4c1d95;
  border: 1px solid #7c3aed;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.roll-btn:hover {
  background-color: #2e1065;
}