* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
img {
  width: 200px;
  height: 50px;
  position: absolute;
  left: 30px;
  top: 13px;
}
.main-wrapper-background {
  width: 100%;
  height: 100%;
  background: url("./images/pozadinaOnamaIPoslu.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-wrapper {
  background-color: black;
  opacity: 0.6;
  width: 80%;
  height: 90%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.navbar {
  width: 100%;
  height: 50px;
  background-color: white;
  color: black;
}
ul {
  list-style: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
li {
  display: inline;
  padding: 25px;
  font-size: 1.3rem;
  font-weight: bolder;
}
li:hover {
  cursor: pointer;
  text-decoration: underline;
}
.onama,
.oposlu {
  width: 100%;
  height: 50%;
  color: white;
}
.onama {
  padding: 10px;
}
.onama h1 {
  margin-top: 50px;
}
.onama p {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 28px;
}
.onama p:nth-of-type(1) {
  margin-top: 20px;
}
.oposlu {
  color: white;
}
.oposlu .oposlu-ul {
  list-style: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.oposlu .oposlu-ul li {
  display: block;
  padding: 10px;
  font-weight: 700;
}
.oposlu .oposlu-ul li:hover {
  text-decoration: none;
  cursor: unset;
}
.oposlu ul li i {
  font-size: 2rem;
  margin-right: 10px;
}
.oposlu p {
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: 700;
  margin-left: 10px;
}

@media screen and (max-width: 600px) {
  body {
    overflow: visible;
  }
  .inner-wrapper {
    height: auto;
    width: 100%;
  }
  .onama {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .onama p {
    font-size: 1.1rem;
  }
  .onama h1 {
    font-size: 1.5rem;
    margin-top: 170px;
  }
  .oposlu {
    margin-bottom: 25px;
  }
  .oposlu ul li i {
    font-size: 1.2rem;
  }
  .oposlu p {
    font-size: 1.1rem;
  }
}
