body {
  background-color: #000;
  font-family: Montserrat;
  color: #fff;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
}

.navbarSection {
  padding: 0 1rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  border-bottom: solid #bdbdbd 0.5px;
  z-index: 999;
}

.container {
  max-width: 1440px;
  padding: 2rem;
  margin: 0 auto;
}

.mainSection {
  padding-top: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  height: 100dvh;
}

.heading {
  margin: -0;
  font-size: 4rem;
  text-align: center;
  font-weight: 800;
  position: relative;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.dice {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: space-around;
}

.buttonGroup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.rollButton {
  background-color: #ff0000;
  width: 100%;
  max-width: 440px;
  height: 64px;
  text-align: center;
  /* margin-top: 4rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

:hover .newGame {
  cursor: pointer;
}

.rollButton p {
  margin: 0;
  padding: 1rem 0rem;
  font-weight: 600;
  font-size: 1.5rem;
}

:hover .rollButton {
  cursor: pointer;
  font-size: 1;
}

.fotter {
  position: absolute;
  font-weight: 200;
  bottom: 2rem;
}

@media (max-width: 800px) {
  .mainSection {
    justify-content: space-around;
  }

  .flex-column {
    justify-content: space-around;
  }

  .heading {
    font-size: 2rem;
    margin: 0;
    /* margin: 2rem 0 4rem; */
    padding: 0;
  }

  .diceImg {
    width: 120px;
  }

  .flex-row {
    gap: 2rem;
  }

  .rollButton P {
    font-size: 1.2rem;
  }

  .fotter {
    bottom: 0;
    margin-top: 2rem;
  }
}
