header {
  height: 500px;
  width: 100%;
  position: relative;
  background-color: rgb(53, 39, 39);
}

header .header-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/index.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

header .header-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

header h1,
header h2 {
  background: linear-gradient(180deg, #cccccc, #dddddd, #eeeeee, #ffffff);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 2px;
  margin: 0;
  line-height: 1.2;
}

header h1 {
  font-size: 64px;
}

header h2 {
  margin-top: 16px;
  font-size: 16px;
}

header ul {
  color: #ffffff;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
