body   {
    background-color: #FFF7DD;
    overflow-y: hidden;
}

#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

p {
  margin: 3vh;
}

.child {
    width: 95vw;
    margin-left: 200px;
    margin-right: 200px;
    border: 1px solid #000; /* Optional for visibility */
  }

#timer {
    
    font-family: "Black Han Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 12vw;
    background-color: #80A1BA;
}

#buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: #91C4C3;
}

#rounds {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #B4DEBD;
}

#rounds-text {
  font-family: "Black Han Sans", sans-serif;
  font-size: 25px;
}

#roundsLog {
    margin-bottom: 25px;
    width: 50%;
    text-align: center;
    overflow-y: scroll;
    max-height: 50vh;
}

.log {
    border-bottom: solid 1px #000;
}

button {
    margin-top: 20px;
    margin-bottom: 20px;
    background: #fbca1f;
    font-family: "Black Han Sans", sans-serif;
    padding: 0.6em 1.3em;
    font-weight: 900;
    font-size: 18px;
    border: 3px solid black;
    border-radius: 0.4em;
    box-shadow: 0.1em 0.1em;
    cursor: pointer;
  }
  
  button:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em;
  }
  
  button:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em;
  }