body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.content {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #ECC541;
  text-align: left;
}

h1 {
  font-size: 4em;
  margin-bottom: 10px;
  color: black;
}

p {
  font-size: 2em;
  margin-bottom: 20px;
}

.order-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #ECC541;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.order-btn:hover {
  background-color: #0056b3;
}
