@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  /* background-image: url("https://images.unsplash.com/uploads/141103282695035fa1380/95cdfeef?q=80&w=2030&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); */
  background: #0f0c29;  
  background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  
  background: linear-gradient(to right, #24243e, #302b63, #0f0c29);  
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: "Tajawal", serif;
  font-weight: 200;
}


body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);

}


.container {
  text-align: center;
  z-index: 1;
}


@keyframes pulse {
  0% { transform: scale(1.1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1.1); }
}

.logo {
  width: 350px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 5s infinite; 
}

.message {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .message {
    font-size: 1.5rem;
  }

  .logo {
    width: 150px;
    height: auto;
    /* margin-bottom: 20px; */
  }
}

@media (max-width: 480px) {
  .message {
    font-size: 1.2rem;
  }

  .logo {
    width: 150px;
    height: auto;
    /* margin-bottom: 20px; */
  }
}
