.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2em;
    color: #e15a2a;
}

.background-image {
    top: 0;
    left: 80%;
    margin-left: 150px;
    /* transform: translateX(-50%); */
    width: 80%;
    height: 80%;
    object-fit: cover;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5em;
  }

  .background-image {
    width: 100%;
    height: auto;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.2em;
  }

  .background-image {
    width: 100%;
    height: auto;
  }
}
