body {
  flex-direction: column;
  align-items: left;
  height: auto;
  color: #111111;
  background-image: none;
  margin: 16px;
}

.dice {
  height: 600px;
  grid-gap: 4rem;
}

h1 {
  width: 610px;
  margin: 16px auto;
}

h2 {
  width: 610px;
  margin: 16px auto;
}

h3 {
  width: 610px;
  margin: 16px auto;
}

p {
  width: 610px;
  margin: 16px auto;
}

img {
  border-radius: 25px;
  margin: 16px auto;
  width: auto;
  max-width: 100%;
}

#increase-button {
  background-image: url("./plus_button.png");
  background-color: transparent;
  background-size: 44px 44px;
  width: 44px;
  height: 44px;
  border: none;
  outline: none;
  margin: 16px;
}

#increase-button:active {
  background-image: url("./plus_button_pressed.png");
}

#decrease-button {
  background-image: url("./min_button.png");
  background-color: transparent;
  background-size: 44px 44px;
  width: 44px;
  height: 44px;
  border: none;
  outline: none;
  margin: 16px;
}

#decrease-button:active {
  background-image: url("./min_button_pressed.png");
}

#roll-button {
  background-image: url("./roll_button.png");
  background-color: transparent;
  background-size: 128px 128px;
  width: 128px;
  height: 128px;
  border: none;
  outline: none;
}

#roll-button:active {
  background-image: url("./roll_button_pressed.png");
}

#controls-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-self: center;
}

@media only screen and (max-width: 768px) {
  .container {
    transform: scale(0.4);
    transform-origin: top;
    margin: 0;
    height: 260px;
  }

  body {
    margin: 0px;
  }

  h1 {
    width: auto;
    margin: 16px;
  }

  h2 {
    width: auto;
    margin: 16px;
  }

  p {
    width: auto;
    margin: 16px;
  }

  img {
    margin: 16px;
  }
}
