body {
  margin: 0;
  padding: 0;
  /* font-family: Arial, sans-serif; */
  font-family: "Baloo Da 2", sans-serif;
  background: url("./images/background.jpeg") left top no-repeat;
  background-size: cover;
  outline: none;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.inner-wrapper {
  background: rgba(000, 000, 000, 0.5);
  backdrop-filter: blur(4px);
  padding: 50px 0%;
  text-align: center;
  min-width: 650px;
  position: relative;
}
.wrapper-border {
  position: absolute;
  top: -3px;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.wrapper-border span:nth-child(1) {
  border-top: 3px solid #17a2b8;
  width: 16.6%;
}
.wrapper-border span:nth-child(2) {
  border-top: 3px solid #007bff;
  width: 16.6%;
}
.wrapper-border span:nth-child(3) {
  border-top: 3px solid #6610f2;
  width: 16.6%;
}
.wrapper-border span:nth-child(4) {
  border-top: 3px solid #dc3545;
  width: 16.6%;
}
.wrapper-border span:nth-child(5) {
  border-top: 3px solid #fd7e14;
  width: 16.6%;
}
.wrapper-border span:nth-child(6) {
  border-top: 3px solid #28a745;
  width: 16.6%;
}
.inner-wrapper h1 {
  color: #fff;
  margin: 0 0 20px;
}
.inner-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.inner-wrapper ul li {
  margin: 15px 0;
}
.inner-wrapper ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: block;
  background: #fff;
  padding: 3px 20px;
  transition: all 0.1s ease;
}
.inner-wrapper ul li a:hover {
  background: #f97d09;
  color: #fff;
}

/* responsive style */
@media screen and (max-width: 767px) {
  .inner-wrapper {
    min-width: inherit;
    padding: 30px 5%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 640px) {
  .inner-wrapper ul {
    flex-direction: column;
    gap: 0px;
  }
}
