

body {
  font-family: 'Varela Round', sans-serif;
  margin:0;
  width: 100vw;
  height: 80vh;
}

.container {
  height: 100%;
}

.dice-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height:14%;
}

.dice {
  border-radius:4px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  font-size:30px;
  background-image: url('dice/empty.png');
  background-size: cover;
}

.roll-row {
  display: flex;
  justify-content: center;
  border-top:4px solid black;
  border-bottom:4px solid black;
  background-color:green;
  width:100%;
  height:10%;
}

button {
  background:none;
  width:100%;
  height:100%;
  font-size: 40px;
  border:none;
  color:white;
  font-family: inherit;
  font-size:30px;
}

.boxes {
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  height:64%;
  border-top: 4px solid black;
}

.col1 {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:0;
}

.col2 {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:0;
  border-left: 1px solid black;
}

.box {
  width: 100%;
  height: 12.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-bottom: 1px solid black;
}

.sub-total {
  border-top: 1px solid black;
  border-bottom: 2px solid black;
  font-size: 35px;
  background-color: #a1a1a1;
}

.total-row {
  height: 8%;
}

.total {
  border-bottom: 4px solid black;
  font-size:45px;
  background-color: #7d7d7d;
  height:100%;
}

.bonus-box {
  background-color: #EDEDED;
}

.box-name {
  width:50%;
  text-align: center;
  font-size:14px;
}

.box-score {
  width:50%;
  text-align: center;
  font-size:25px;
}

#high-score {
  background-color: blue;
  color:white;
  border-bottom:4px solid black;
}


#avg-score {
  background-color: blue;
  color:white;
  border-bottom:4px solid black;
}

.title-row {
  height:10%;
  text-align: center;
  font-size:40px;
  background-color: black;
  color:white;
  display:flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 600px) {
  .container {
    margin:auto;
    width:60%;
  }

  .dice {
    width:60px;
    height:60px;;
  }
}

@media screen and (min-width: 992px) {
  .container {
    margin:auto;
    width:40%;
  }
  
  .dice {
    width:70px;
    height:70px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    margin:auto;
    width:40%;

  }
  
  .dice {
    width:70px;
    height:70px;
  }
}