


/* Set the background color to a dark shade of blue */
/* Set the font family to a cursive or handwritten style */
*{
 box-sizing: border-box;
}
  
body {
    margin: 0;

    font-family: 'Comic Sans MS', cursive, sans-serif;
    text-align: center;
    background-color: #1c2331;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

  }
  
  
  /* Style the notifications box */
  #notifications {
    font-size: 18px;
    color: #fff;
    background-color: #2c3e50;
    height: 100px;
    padding: 10px;
    width: 80%;
    margin-top: 20px;
    display: inline-block;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #3498db #2c3e50;
    border-radius: 1vmin;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);

  }
  #notifications::-webkit-scrollbar {
    width: 8px;
  }
  #notifications::-webkit-scrollbar-track {
    background: #2c3e50;
  }
  #notifications::-webkit-scrollbar-thumb {
    background-color: #3498db;
    border-radius: 10px;
    border: 2px solid #2c3e50;
  }
  #notifications::-webkit-scrollbar-thumb:hover {
    background-color: #2980b9;
  }


  #buttons{
    margin-top: 20px;
  }
  /* Style the buttons */
  button {
    font-size: 18px;
    color: #fff;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
  }
  
  /* Style the buttons on hover */
  button:hover {
    background-color: #2980b9;
  }
  
  /* Style the buttons when they're clicked */
  button:active {
    background-color: #1c5a7d;
  }

  .button-container {
    text-align: center;
  }
  
  #game-title {
    text-align: center;
    font-size: 48px;
    color: #3498db;
    margin-top: 20px;
    
  }
  
  #info-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    width: 100%;
    background-color: #2c3e50;
    margin-top: 20px;
  }

  
  .info-item {
    font-size: 16px;
    color: #fff;
  }
  
  #main-game {
    height: 200px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    border-radius: 1vmin;
    width: 80%;
  }
  
