@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html{
    width:100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}
body{
 font-family: "Poppins", sans-serif;
    background: url("../img/desktop.png") no-repeat center center;
  background-size: 100% 100%;
  background-attachment: fixed;
   
}
.site-footer{
    position: absolute;
    right: 70px;
    bottom: 15px;
}
.alive-logo
 {
    height: 45px;
}

.submitBtn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(to bottom, #1f5fbf, #0d47a1);
    box-shadow: 0px 6px 0px #0b3c91, 
                0px 8px 15px rgba(0,0,0,0.2);
    transition: all 0.2s ease-in-out;
    border:none;
    outline: none;
}
/* Hover Effect */
.submitBtn:hover {
    background: linear-gradient(to bottom, #2c6fd6, #1565c0);
    transform: translateY(-2px);
    text-decoration: none;
    color:#fff;
}

/* Click Effect */
.submitBtn:active {
    box-shadow: 0px 3px 0px #0b3c91;
    transform: translateY(3px);
}

/* Mobile background */
@media(max-width:768px){
  body{
    background: url("../img/mobo.png") no-repeat center center;
 background-size: 100% 100%;
  background-attachment: fixed;
    /* padding:40px 0;   */
  }
  
}