*{
    font-size: 1.2rem;
    box-sizing: border-box;
    padding: 0;
    border: 0;
    font-family: "Roboto", sans-serif;
}
html{
    background-color: whitesmoke;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

  .bouncing-dots {
    display: flex;
    gap: 8px;
}
  
  .bouncing-dots span {
    width: 12px;
    height: 12px;
    background: #007bff;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}
  
.bouncing-dots span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
.bouncing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}
  
  @keyframes bounce {
    from {
      transform: translateY(0);
      opacity: 0.5;
    }
    to {
      transform: translateY(-12px);
      opacity: 1;
    }
}
header{
    margin: 0.5rem 0.5rem 1rem ;
    padding: 1rem 0.5rem;
    padding-left: 0.5rem;
    border: 3px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient( to right, rgba(105, 191, 248, 0.726) , wheat );
    border-style: solid rgb(230, 230, 230);
    
}
header h1{
    margin: 0;
    color: rgb(248, 132, 132);
    font-size: 1.95rem;
}
h2{
    margin: 0.5rem;
    padding: 1rem 0.5rem;
    font-family: "Noto Sans", sans-serif;
}
.para{
    margin: 0rem 0.5rem 0rem 0.5rem;
    padding: 1rem 0.5rem;
    font-family: "Noto Sans", sans-serif;
}
ul li{
    margin: 1rem;
    /* line-height: 10%; */
    padding: 0.7em;
    border-top: 1.5rem;
    border: solid 1px;
    border-radius: 10px;
    list-style-type: decimal-leading-zero;
    list-style-position: inside;
}
ul li ::marker{
    border: solid;
    font-size: large;

}
hr{ 
    font-size: 0.5rem;
    text-align: center;
    width: 75%;
    border: solid 1px;

}
footer{
    text-align: center;
}

.btn-img{
    border: 1px solid;
    border-radius: 50%;
    background-color: inherit;
    overflow: hidden;
}
.right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: whitesmoke;
    padding: 10px 16px;
    border-radius: 50px; /* fully rounded */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}
.right button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
.right button:hover, .right button:focus{
    background-color: red;
}
  
.right img {
    width: 32px;
    height: 32px;
    border-radius: 50%; /* circular image */
    object-fit: cover;
    cursor: pointer;
}

.invisible-link {
    all: unset; /* removes all default link styles */
    display: inline-block; /* keeps layout behavior */
}
  
.invisible-link:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
