
body.bg-image {
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;    
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px;
    text-align: center;
    border-radius: 10px;
    color: white;
    width: 90%;
    max-width: 800px;
  }

  .image-container {
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  
  .title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  
  .btn {    
    background-color: var(--green);
    color: white;
    padding: 18px 55px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 15px;
  }
  
  .btn:hover {
    background-color: #045e4c;
  }
  

  