body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto Slab", serif;
}

header {
  display: flex;
  align-items: center;
  align-content: center;
  background-color: black;
  padding: 10px;
  height: 100px;
}

.header-container {
  padding-left: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  color: white;
  max-width: 1240px;
}

/* Creating the reversed parallelogram (jajargenjang) shape */
.logo-container {
  background-color: white;
  height: 100px;
  width: 120px;
  /* Adjust width to fit the logo */
  transform: skew(20deg);
  /* Skew to create reversed parallelogram */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.logo-container img {
  height: 45px;
  transform: skew(-20deg);
}

.text-container {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-left: 50px;
}

.header-title {
  margin: 0;
  font-size: 1.5rem;
}

.img-sign {
  width: 150px;
  height: 150px;
}

@media (max-width: 544px) {
  header {
    display: flex;
    align-items: center;
    align-content: center;
    background-color: black;
    padding: 10px;
    height: 70px;
  }

  .header-title {
    margin: 0;
    font-size: 1rem;
  }

  .header-container {
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    color: white;
  }

  .text-container {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 25px;
  }

  .logo-container {
    background-color: white;
    height: 70px;
    width: 100px;
    transform: skew(15deg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .logo-container img {
    height: 40px;
    transform: skew(-20deg);
  }
  .img-sign {
    width: 100px;
    height: 100px;
  }
}
