html{
    scroll-behavior: smooth;
}
body {
    background-color: black;
    color: white;
    overflow-x: hidden;
}

/* CSS */
.l9 {
    padding: 0.5em 2em; /* Increased padding for larger size */
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    border-radius: 10px;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    /* Positioning */
    position: absolute;
    top: 85px; /* Moved down by 50px */
    right: 50px; /* Adjust as needed */
  }
  
  .l9:before {
    content: "";
    background: linear-gradient(
      45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
  }
  
  @keyframes glowing-button-85 {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  .l9:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
  
  

.ab {
    font-size: 4rem;
    position: absolute;
    top: 10px;
    left: 450px;
}

.r {
    font-size: 1.5rem;
    width: 700px;
    height: 150px;
    border: 1px solid white;
    border-radius: 15px;
    padding: 20px;
    margin-left:30px;
}

.btr {
    position: absolute;
    top: 200px;
    left: 960px;
    height: 320px;
    width: 300px;
}

#bi {
    font-size: 2rem;
    position: relative;
    left: 250px;
}

.s {
    font-family: Pussycat, Algerian, Broadway;
    font-size: 3rem;
    position: relative;
    left: 400px;
}

#buttons {
    justify-content: center;
    padding: 15px;
    font-size: 1.5rem;
    color: white;
}

#buttons a {
    text-decoration: none;
    margin:7px;
}

#buttons button {
    border: 1px solid white;
    cursor: pointer;
    color: azure;
    background-color: transparent;
    width: 300px;
    height: 200px;
    font-size: 2rem; /* Adjusted font size */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: inline-block;
    vertical-align: top; /* Adjusted vertical alignment */
    line-height: 1.2; /* Ensures proper spacing between lines of text */
    text-align: center; /* Centers text horizontally */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Show ellipsis for overflow text */
    padding: 10px; /* Adjusted padding */
}


#buttons button:hover {
    transform: scale(1.2); /* Increase size on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Lighten background color on hover */
}

.ss {
    font-size: 1.3rem;
    position: relative;
    top: 20px;
    left: 450px;
    margin-bottom: 20px;
}
@media only screen and (max-width:767px){
  body{
    overflow-x:hidden;
  }
  .l9{
    height:10%;
    width:25%;
    font-size: 0.8rem;
    position:absolute;
    left:auto;
    top:20px;
  }
  .qw{
    height:80px;
    width:130px;
  }
  .ab{
    position:relative;
    left:auto;
    top:auto;
    text-align: center;
    font-size:2.5rem;
  }
  .btr{
    display:none;
  }
  #bi{
    position:relative;
    left:auto;
    top:auto;
    text-align: center;
    font-size:1.5rem;
  }
  .r{
    height:unset;
    width:unset;
    position:relative;
    left:auto;
    top:auto;
    text-align: center;
    font-size:0.5rem;
  }
  .s{
    position:relative;
    left:auto;
    top:auto;
    text-align: center;
    font-size:1.5rem;
  }
  #buttons {
    padding: 10px;
    overflow-x:hidden /* Adjusted padding for smaller screens */
}
#buttons button {
  width: calc(45% - 10px); /* Adjusted width for two buttons in one line with margin */
  height: 100px; /* Adjusted height for smaller screens */
  font-size: 1.2rem; /* Adjusted font size for smaller screens */
  margin: 5px; /* Reduced margin between buttons for smaller screens */
  display: inline-block; /* Display as inline-block on smaller screens */
  vertical-align: top; /* Adjusted vertical alignment */
}
.ss{
  position:relative;
  left:auto;
  top:auto;
  text-align: center;
  font-size:1.3rem;
}
}

  
