body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-content {
  padding: 20px;
  max-width: 960px;
}

.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 60px;
}

.title {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description {
  color: #c0c1c1;
  line-height: 1.6;
  margin-bottom: 60px;
}

.btn-ebay {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 20px;
  background: linear-gradient(to bottom, #f49b20, #eb6c01);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-ebay img {
  position: relative;
  width: 48px;
  margin-left: 6px;
  margin-right: 6px;
  top: -1px;
}

.btn-ebay:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .logo {
    max-width: 300px;
  }
  .title {
    font-size: 40px;
  }
  .description {
    font-size: 20px;
  }
  .btn-ebay {
    padding: 16px 20px;
  }
}/*# sourceMappingURL=index.css.map */