
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .container button {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px 40px;
    font-size: 18px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
  }

  .container button:hover {
    background-color: #cc5500;
  }

  .banner {
    margin-top: 150px;
  }
  .left-img {
    margin-top: -30px;
  }
  .right-img {
    margin-top: -30px;
  }
  @media screen and (max-width: 769px) {
    .logo-img {
      width: 150px;
    }
    .banner {
      width: 100px;
    }
    .banner {
        margin-top: 0px;
      }
    .container button {
      position: absolute;
      top: 80%;
      left: 50%;
      padding: 10px 20px;
    }
  }
  @media screen and (max-width: 368px) {
    .container button {
        position: absolute;
        top: 80%;
        left: 50%;
        padding: 5px 10px;
      }
      .banner {
        margin-top: 80px;
      }
  }
