body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background-color: #50514F;
  color: #EBEBEB;
}

.split-container {
  display: flex;
  height: 100%;
}

.pane {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #CCC;
  box-sizing: border-box;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  border: 1px solid #DDD;
  padding: 8px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 18pt;
}

th {
  background-color: #50515F;
}

img {
  max-width: 100%;
  height: auto;
}

#pane1 {

  text-align: center;
}

#timer {
  font-size: 8em;
  margin: 20px auto;
}

#startStopButton {
  font-size: 3em;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #FFF;
  border: none;
  cursor: pointer;
}
.btnStyle {
  font-size: 3em;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #FFF;
  border: none;
  cursor: pointer;
}
#startStopButton:hover {
  background-color: #45A049;
}

#timeList {
  list-style-type: none;
  padding: 0;
}

#timeList li {
  font-size: 2em;
  margin: 5px 0;
}
#rubiksScrambler {
  text-align: center;
  margin-top: 20px;
}

#rubiksScrambler button {
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
}

#rubiksScrambler p {
  font-size: 25px;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin-top: 10px;
}


@media (max-width: 768px) { /* Adjust the number according to your preference */
  .split-container {
    flex-direction: column;
  }
  
  .pane {
    height: auto; /* Adjust height or set min-height if needed */
    overflow-y: auto; /* Adjust if you want a scrollbar on mobile */
  }
  th,
  td {
    font-size: 10pt;
  }
  #timer {
  font-size: 5em;
    margin: 0;

}
  img {
    max-width: 60%;
    
  }
  #startStopButton {
    margin: 0;
      }
}