* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Rubik", sans-serif;
}
/* start header   */
header {
  background-color: red;
  background-image: url("./images/pattern-bg.png");
  padding: 2rem 0 7rem;
  color: white;
  text-align: center;
  position: relative;
}
.label-container {
  margin: 1rem 0;
}
.label-container input {
  padding: 1rem;
  width: 50%;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
}
.label-container button {
  padding: 1rem 2rem;
  position: relative;
  left: -1%;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  border: none;
  font-size: 1rem;
  background-color: black;
  color: white;
  cursor: pointer;
}
.status-container {
  display: flex;
  background: white;
  width: 75%;
  color: black;
  margin: 1rem auto;
  /* justify-content: space-around; */
  align-items: center;
  border-radius: 7px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 6px 0px #b9b9b9;
  z-index: 100;
}
.status-container .status-col {
  padding: 2rem;
  flex: 25%;
}
.status-container .status-col:not(:last-child) {
  border-right: 1px solid #c9c9c9;
}
.status-container .status-col p {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
    .status-container h4 {
        font-size: .75rem;
    }
}
@media (max-width: 767px) {
    .label-container input,
    .label-container button {
        font-size: .75rem;
    }
    .status-container {
        flex-direction: column;
        width: 60%;
    }
    .status-container .status-col {
        padding: 1rem;
    }
    .status-container .status-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #c9c9c9;
    }
}
/* end header   */
