body{
    font-family: tajawal, sans-serif;
    background-image: url(assests/Desktop.png);
    background-size: 100%;
    background-attachment: fixed;
}
h1,h2,h3,h4,h5,h6,p{
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    height: fit-content;
    width: fit-content;
}
img{
    background: none;
    width: 150px;
    height: 150px;
    margin: 15px;
    float: right;
    position: relative;
    margin-bottom: 500px;
    z-index: 9999;
}
.Check-QR{
    mix-blend-mode: normal;
    width: 300px;
    height: 300px;
    margin: auto;
    display: block;
}
input{
    background-color:rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 30px;
    width: fit-content;
    border:2px solid white;
    border-radius: 500px;
    margin: auto;
    display: block;
    min-width: 50px;
}
button{
    background-color:rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(30px);
    color: white;
    font-size: 70px;
    width: fit-content;
    cursor: pointer;  
    border:2px solid white;
    border-radius: 500px;
    margin: auto;
    display: block;
    min-width: 50px;
}
a{
    text-decoration: none;
    min-width: 50px;
}
.loading-container {
    width: 80%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    margin: 20px auto;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.loading-bar {
    width: 0;
    height: 30px;
    background-color: #4caf50;
    border-radius: 15px;
    position: relative;
    z-index: 1000;
    
    /* Apply the animation properties */
    animation-name: slideIn;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes slideIn {
  from {
    width: 0; /* Animation starts with a width of 0 */
  }
  to {
    width: 100%; /* Animation ends with a width of 100% */
  }
}
.boot{
  /* Hide the button initially */
  opacity: 0;

  /* Define the animation properties */
  animation-name: appear;
  animation-duration: 0.5s; 
  animation-delay: 127s; 
  animation-fill-mode: forwards; 
}

@keyframes appear {
  to {
    opacity: 1;
  }
}
.desktop{
    background-size: contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.desktop img{
    width: 60px;
    height: fit-content;
  }