body {
    margin: 0;
    padding: 0;
    background: url('assets/ng_reezocar.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Source Sans Pro, sans-serif;
    font-size: 1rem;
    line-height: 140%;
  }
   
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
   
  .popup {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
   
  .logo {
    width: 150px;
    margin-bottom: 1rem;
  }
   
  .contact {
    background-color: #fef5e6;
    border-radius: 8px;

    p {
      padding: 8px 0;
    }

    span {
      color: #000;
      font-weight: 700;
    }
  }
   
  .footer {
    margin-top: 1.5rem;
    font-weight: bold;
  }

  @media (max-width: 600px) {
    .popup {
      width: 90%;
      padding: 1rem;
      border-radius: 24px;
    }
   
    .logo {
      width: 120px;
    }
   
    body {
      background-size: cover;
      background-position: center top;
    }
   
    .overlay {
      padding: 1rem;
    }
  }