body{
  text-align: center;
  background-color: #1E1E1E;
  font-family: 'Poppins';
  color: white;
}

.content-centered{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#matrix{
  margin: 0 auto;
}


input[type="number"]{
  height: 60px;
  width: 60px;
  border-radius: 10px;
  font-size: 40px;
  text-align: center;
}

.result{
  color: white;
}

td {
  padding: 3px;
}


input[type="text"]{
  height: 30px;
  border-radius: 10px;
}

h1{
  font-weight: 600;
  color:#FCF0EC ;
}

p{
  color: #FCF0EC;
}

button{
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Poppins';
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition:  0.3 ease-in;
  background-color: #FFBB01;
}


/* Media query for small screens */
@media (max-width: 600px) {
  .button {
    padding: 8px 16px;
    font-size: 14px;
  }
}