body {
    font-family: Arial, sans-serif;
    background-image: url('Image/bg1.jpg');
    background-size: cover ;
    background-repeat: no-repeat ;
    background-position: center;
    position: relative;
    width: 100%;
    height: 100vh;
}

.header{
    position: fixed;
}

.header-image{
    position: relative;
    display: block;
    margin: 10px 170px;
    padding: 0px;
    width: 250px;
    height: 50px;
    background-blend-mode: multiply;    
}

.title {
    display: block;
    position: relative;
    margin: 0 10%;
    padding: 65px;
    font-size: large;
    color: rgb(255, 254, 253);
}

.para{
    display: flex;
    position: relative;
    font-size: large;
    color: white;
}

.blue-button{   
    display: inline-block;
    padding: 20px 5px; 
    margin-left: 5px;
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none; 
    border: none; 
    border-radius: 15px; 
    cursor: pointer; 
    font-size: 16px; 
    font-weight: bold; 
    transition: background-color 0.3s ease; 

}

.blue-button:hover{
    background-color: #0056b3;
}

.button-text{
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;    
    padding: 0px 0; /* Adjust as needed */
    text-align: center;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-items: center;
}

.footer-host{
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    flex-direction: column;
    margin-left: 50px;
    font-size: 14px;
    color: #000000;
}   

.footer-power  {
        display: flex;
        flex-direction: row;
        position: absolute;
        left: 50%;
        top: -50%;
        transform: translateX(-50%);
}

.footer-host img{
    width: 100px;
    height: auto;
    margin-top: 12px;
    margin-left: 10px;
    align-items: center;
    justify-items: center;
}

.footer-logo img{
    width: 70px;
    height: auto;
    margin-right: 20px;
    opacity: 50%;

}

.footer-copy {
    font-size: 14px;
    color: #000000;
} 

@media only screen and (max-width: 600px) {
    .header-image {
      width: 150px;
      height: 40px;
      margin-left: 20px;
    }

    .blue-button{   
        display: inline-block;
        padding: 5%; 
        margin-left: 40%;
        font-size: 80%; 
    
    }
  
    .title {
      padding: 38px 10px;
      margin: 0px 10%;
      margin-left: 5%;
    }
  
    .para {
      flex-direction: column;
    }
  
    .blue-button {
        padding: 2%;
        margin-top: 10px;
        margin-left: 0;
        text-align: center;
    }
    .button-text{
        font-size: 150%;
    }
  
    .footer-content {
        display: flex;
        flex-direction: column;
    }
  
    .footer-power  {
        display: flex;
        flex-direction: row;
        position: absolute;
        left: 50%;
        top: -50%;
        transform: translateX(-50%);
    }
    .footer-host {
      margin-top: 20px;
      text-align: center;
      margin-left: 0;
    }

    .footer-logo img{
        width: 50px;
    }
  }

  