.result-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 10px;
}

.result-box {
  background-color: #0f0427;
  display: flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
}

.result-box span {
  color: white;
  font-family: "VTF Redzone Classic", Sans-serif;
  font-size: 26px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  
  .result-box {
    width: 64px;
    height: 64px;
  }
  
  .result-box span {
    font-size: 22px;
  }
}