* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --lightCyan: hsl(193, 38%, 86%);
  --neonGreen: hsl(150, 100%, 66%);
  /* ### Neutral */
  --grayishBlue: hsl(217, 19%, 38%);
  --darkGrayishBlue: hsl(217, 19%, 24%);
  --darkBlue: hsl(218, 23%, 16%);
}

body {
  background: var(--darkBlue);
}
main {
  height: 90vh;
  width: 100vw;
  background: var(--darkBlue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.theBox {
  width: 500px;
  height: auto;
  min-height: 300px;
  background-color: var(--darkGrayishBlue);
  max-height: 500px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.theBox p {
  font-size: 14px;
  color: var(--neonGreen);
  margin-top: 60px;
}

.theBox h2 {
  color: white;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.dice-container {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--neonGreen);
  margin-bottom: -25px;
  transition: 200ms;
  cursor: pointer;
}

/* majd csak széles képernyőn legyen */
.dice-container:active {
  box-shadow: 0px 0px 20px 1px var(--neonGreen);
  transition: 200ms;
}

.dice-container:hover {
  box-shadow: 0px 0px 20px 1px var(--neonGreen);
  transition: 200ms;
}

.mobile-pause-lines {
  display: none;
}
/* media queries */
@media screen and (max-width: 480px) {
  .theBox {
    width: 100vw;
    margin: 15px;
    min-height: 350px;
  }
  .desktop-pause-lines {
    display: none;
  }
  .mobile-pause-lines {
    display: flex;
  }
  .dice-container:active {
    box-shadow: none;
  }
  .dice-container:hover {
    box-shadow: none;
  }
}

.attribution {
  color: white;
  margin-bottom: 50px;
  font-size: 14px;
  text-align: center;
}

.attribution a {
  color: white;
}
