.cover-photo {
  background: linear-gradient(
      180deg,
      rgba(44, 62, 82, 1),
      rgba(44, 62, 82, 0.7)
    ),
    url(../images/bus-trips.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  height: calc(80vh - 80px);
  position: relative;
}

.cover-photo h2 {
  position: absolute;
  color: #fff;
  font-size: 5rem;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prevoz {
  display: block;
  padding: 30px;
  text-align: center;
  max-width: 70%;
  margin: 30px auto;
  color: rgb(87, 86, 86);
  background-color: rgb(240, 240, 240);
  border-radius: 5px;
}

.prevoz p {
  text-align: justify;
  padding-bottom: 5em;
}

.prevoz h3 {
  margin: 20px 0;
}

table,
th,
td {
  border: 1px solid rgba(60, 109, 179, 0.5);
  margin-bottom: 20px;
}

table .heading {
  font-weight: 600;
  background-color: rgba(60, 109, 179, 0.5);
}

footer {
  display: flex;
  max-width: 100%;
  min-height: 20vh;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(45deg, rgb(27, 48, 92), rgba(60, 109, 179, 1));
  box-shadow: 0 0 10px rgb(33, 25, 102);
}

@media (max-width: 700px) {
  .prevoz {
    padding: 5px;
    width: 100%;
  }
}

@media (max-width: 438px) {
  footer {
    flex-direction: column;
  }
}

.footer-right {
  height: 100%;
}

.footer-right p {
  color: #fff;
}

.footer-left img {
  width: 200px;
}

@media (max-width: 438px) {
  .footer-left img {
    margin: 10px 0 10px 0;
    width: 150px;
  }
}

.rights {
  background-color: rgb(44, 62, 82);
  text-align: center;
}

.rights p {
  color: #fff;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgb(27, 48, 92);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  transition: transform 0.5s, box-shadow 0.5s;
}

#myBtn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(33, 25, 102, 0.3);
}
