body {
  
    text-align: center;
    direction: rtl;
    background-image: url('../assets/arabic/img/alphapetident.jpg');
    font-family: "Yusei Magic", sans-serif;
    background-size: cover;
    background-position: center;
  }
  
  /* Logo Styles */
.nav-brand {
	position: absolute;
	left: 30px;
	top: 30px;
}

.brand {
	position: absolute;
	top: 25px;
  left: 68px;
	color: #000;
	font-size: 16px;
}

  canvas {
    border: 1px solid black;
   
    background-color: white;
  }
  
  .alert-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 2px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1000;
  }
  
  .alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  #score {
    width: 100px;
    font-size: 24px;
    margin: 10px auto; 
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid black;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center; 
  }
  
  
  #startButton {
    font-size: 20px; 
    padding: 12px 24px; 
    margin-top: 30px;
    background-color: brown;
    color: white;
    border: none; 
    border-radius: 5px; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer; 
    transition: background-color 0.3s ease; 
  }
  
  #startButton:hover {
    background-color: #8B4513; 
  }
  
   
