/* *{
    box-sizing: border-box;
    color: #19084e;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
body{
    margin: 0;
    background-color: blue;
}
button{
    border: none;
    cursor: pointer;
}
.start-screen, .scorecontainer{
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: blue;
}
#start-button, #restart{
    position: absolute;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(37, 22, 80, 0.3);
}
.flex-space{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#display-container{
    background-color: white;
    position: absolute;
    width: 90%;
    max-width: 600px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    padding: 48px 32px;
    border-radius: 12px;
    box-shadow: 0px 16px 48px rgba(37, 22, 80, 0.3);
}
.header{
    padding: 8px;
    border-bottom: 1px solid #c8c5d1;
}
.header .title, .timer span{
    font-weight: 600;
}
#container{
    margin-bottom: 16px;
}
#next-button{
    font-size: 17px;
    background-color: blue;
    color: white;
    padding: 6px 32px;
    border-radius: 4px;
}
.hide{
    display: none;
}
#restart{
    margin-top: 92px;
}
.question-color{
    font-size: 24px;
    text-align: center;
}
.button-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
    place-items: center;
}
.option-div{
    width: 100%;
    height: 160px;
    padding: 16px;
    margin: 5px 0px;
    border-radius: 8px;
} */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: aqua;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .game-container {
    text-align: center;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .colors {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
  }
  
  .color-box {
    width: 100px;
    height: 100px;
    cursor: pointer;
  }
  
  #start-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  #timer {
    font-size: 18px;
    margin-top: 10px;
  }
  
  .hide {
    display: none;
  }
  
  #message {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
  }