 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .background {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('/photos/pawel-czerwinski-GTolTgC1W3Y-unsplash.jpg'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    /* height: 100vh; */
    height: fit-content;
  }
  
  .shadow {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    width: 100%;
    height: fit-content;
    /* height: 100vh; */
    background: rgba(0, 0, 0, 0.5);
   
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
  }
  
  .navbar .logo {
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 100px;
  }
  
  .navbar .menu a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
  }
  
  .auth-buttons button {
    
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    background: transparent;
    transition: background-color 0.5s ease, color 0.3s ease;

  }

  .sign-up{
    position: absolute;
    right: 50px;
  }

  .sign-in{
    position: absolute;
    right: 200px;
  }
  .sign-up:hover,.sign-in:hover {
    background-color: white;
    color: #000;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }
  
  .tagline {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
  }
  .tagline img{
    position: relative;
    left: -4px;
    top: 3px;
  }
  .main-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .gradient-text {
    background: linear-gradient(to right, #3acfd5, #3a89d5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .description {
    font-size: 1em;
    max-width: 600px;
    margin: 10px 0 20px;
  }
  
  .buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .buttons button {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .start-now {
    border:2px solid #3acfd5;
    background-color: #3acfd5;

    color: #fff;
  }
  
  .explore-zenly {
    background: transparent;
    border: 2px solid #3acfd5;
    color: #3acfd5;
  }
  
  .start-now:hover {
    background-color: transparent;
    border:2px solid #3acfd5;
    border-radius: 5px;
    color: #3acfd5;
  }
  
  .explore-zenly:hover {
    background-color: #3acfd5;
    border: 2px solid #3acfd5;
    color: #fff;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .card-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    width: 420px;
    height: 200px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .card-box img {
    margin-bottom: 20px;
  }

  .card-box p{
    padding-top: 15px;
  }



  @media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
  .navbar .menu {
    display: none;
  }
    .background {
      width: fit-content;
      }
  
  .shadow {
    width: fit-content;    
   
  }
    .auth-buttons button {
      display: none;

  }
}
