@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap");

* {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  background: url(/slike/pozadina.jpg);
}
h2 {
  font-size: 1.9rem;
  font-weight: 300;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.ikone {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.item img {
    width: 70px;
}
.img-fluid {
    width: 50%;
}

@media (max-width: 468px) {
  .img-fluid {
    width: 50%;
  }
  .item img {
    width: 50px;
  }
  
}
