body {
  background: #0082c8; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #667db6,
    #0082c8,
    #0082c8,
    #667db6
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #667db6,
    #0082c8,
    #0082c8,
    #667db6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.naslov {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.logo {
  height: 100px;
  width: 100px;
}

.linkovi a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.kontakt__ikone {
    margin: 15px;
}

.kontakt__ikone img {
    height: 50px;
    width: 50px;
}

.button {
    border-radius: 10px;
  position: relative;
  width: 300px;
  height: 80px;
  background: rgb(16, 21, 95);
  margin: auto;
  margin-bottom: 20px;
  
  border: none;
  /* color: #2196f3; */
  color: white;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  transition: 0.5s;
}

.button:hover {
  background: #2196f3;
  color: #111;
  box-shadow: 0 0 50px #2196f3;
  transition-delay: 0.5s;
}

.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2196f3;
  border-left: 2px solid #2196f3;
  transition: 0.5s;
  /*transition-delay: 0.5s;*/
}

.button:hover:before {
  width: 100%;
  height: 100%;
  transition-delay: 0s;
}

.button:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #2196f3;
  border-right: 2px solid #2196f3;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.button:hover:after {
  width: 100%;
  height: 100%;
  transition-delay: 0s;
}

.accordion {
  background: rgb(16, 21, 95);
  color: white;
  cursor: pointer;
  padding: 18px;
  height: 80px;
  width: 100%;
  text-align: left;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active {
  background: #2196f3;
}

.panel {
  padding: 0 18px;
  margin: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  display: flex;
  justify-content: center;
}

.accordion:after {
  content: "\02795";
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
  color: white;
}

.appicon {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  border-radius: 5px;
}

#appicon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.storeicon {
  height: 50px;
  width: 100px;
  border: 1px solid black;
  background-color: white;
  border-radius: 10px;
  padding: 5px;
  margin: 5px;
}
