@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html,body{
  display: grid;
  height: 100vh;
  width: 100%;
  place-items: center;
  background-color:#eaecfd;
}
.frame {
  position: absolute;
  width: 100%;
  height: 150px;
  top: 0px;
  left: 0px;
  background:linear-gradient(180deg, #a3acf8, transparent);
}

.login-button {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  padding: 10px 20px;
  background-color: #6e7beb;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.login-button:hover {
  transform: translateY(-20px);
  border:none;
}

.login-button:hover {
  background-color: #45a049;
  border:none;

}

.image-1 img {
  max-width: 100%;
  width: 150px;
  height: auto;
}
.image-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.image-2 img{
  max-width: 100%;
  width: 400px;
  height: auto;
  position: relative;
  /* left: 100px; */
  /* top: 100px; */
}

.image-2 {
  position: absolute;
  top: 0;
  left: 0;
}





/* ANIMATION */


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: black;
  text-align: center;
  padding: 20px 0;
  background-image: linear-gradient(to right, #a3acf8, #a1a7dd);
  /* Replace #ff8a00 and #da1b60 with your desired colors */
  /* animation: footerAnimation 5s infinite; */
}

.footer-content {
  font-size: 14px;
}

.footer-content p {
  margin: 0;
}

/* Keyframes for footer animation */
@keyframes footerAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}



/* About */

.about {
  max-width: 800px; 
  margin: 0 auto; 
  padding: 20px; 
  border-radius: 10px;
  text-align: justify; /* Align text to the center */
}


.about h1 {
  font-size: 24px; 
  margin-bottom: 15px; 
}


h1 {
  border-bottom: 2px solid #6e46db; /* Add a solid black line under the heading */
  display: inline-block; /* Ensure the border doesn't take the full width */
  padding-bottom: 2px; /* Adjust as needed for spacing */
}

.about p {
  font-size: 16px;
  line-height: 1.6;
}



