* {
  box-sizing: border-box;
  transition: all 0.2s ease;
  /* outline: 1px dashed blue; */
}

html {
  /*  
  font-family: Roboto, sans-serif;
  */
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #363636;
}

body {
  display: block;
  margin: 0px;
  padding: 0px;
  background-color: white;
}

.flex-1 {
  flex: 1;
}

h1,
h2,
h3 {
  margin: 0px;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

h1 {
  letter-spacing: 2px;
  font-size: 1.9em;
  line-height: 1.1em;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
}

a,
a:link {
    color: #363636;
    /* boja obicnih slova */
    color: black;
    text-decoration: underline;
}

a:visited {
    color: #363636;
    /* boja obicnih slova */
    color: rgb(44, 44, 44);
    text-decoration: underline;
}

.wrapper {
  /*
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  min-height: 100vh;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.57);
  */
}

.wrapper,
.drawer-opened .wrapper {
  right: 0px;
}

@media screen and (max-width: 768px) {
  .drawer-opened .wrapper {
    right: 70vw;
  }
}

.inner {
  padding: 0px 2.5rem;
  max-width: 960px;
  margin: 0px auto;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0.75rem;
  }
}

