* {
  box-sizing: content-box;
  margin: 0;
  border: 0;
}

html,
body {
  height: 100%;
}

img {
  pointer-events: none;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.blackout {
  position: absolute;
  width: 60%;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8),
    rgba(255, 255, 255, 0)
  );
  z-index: -1;
}

.date {
  position: absolute;
  width: 170px;
  left: 50%;
  transform: translate(-50%);
}

.content {
  display: flex;
  gap: 10px;
  height: 85%;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 50px;
}

.logo {
  width: 150px;
  margin-left: 75px;
}

.title {
  width: 700px;
}

@media screen and (max-width: 820px) {
  .content {
    align-items: center;
    margin: 0 25px;
    height: 95%;
  }

  .date {
    width: 120px;
  }

  .logo {
    width: 25%;
    margin-left: 0;
  }

  .title {
    width: 100%;
  }

  .blackout {
    width: 80%;
  }
}
