* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: "Montserrat", sans-serif;

  }
  
  .container {
    background: url('assets/bg.jpg') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    position: relative;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.4); /* delikatne przyciemnienie */
    height: 100%;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
  }
  
  .logo {

    letter-spacing: 2px;
    margin-bottom: 10rem;
  }
  @media (max-width: 768px) {
    .logo {
  
      margin-bottom: 2rem;
    }
  }
  .logo svg {
    max-width: 100%;
  }
  .logo span {
    font-size: 1.2rem;
    letter-spacing: 4px;
    display: block;
    margin-top: 0.5rem;
  }
  
  .phone {
    background-color: #224BEF;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-size: 70px;
    font-weight: 400
  }
  @media (max-width: 768px) {
    .phone {
  
        font-size: 50px;
    }
  }
  @media (max-width: 568px) {
    .phone {
  
        font-size: 30px;
    }
  }
  
  .phone a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .bottom-text {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    max-width: 100%;
  }
  
  .bottom-text span {
    color: #cccccc;
    font-weight: normal;
  }
  