/* Ovo je cs file koji definiše glavni ekran */

/* To create a variable with global scope, declare it inside the :root selector.
The :root selector matches the document's root element. */

:root{
  --my_light_blue: #b7deff;
  --my_orange: #ff5e1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ovo je procenat na glavnom ekranu ukupna širina
   a visina nisam siguran zašto ide samo donekle.
   zasad ostaviti 100%
 */
html,
body {
    width: 100%;
    height: 100%;
}

html {
    font-size: 62.5%; /* 16px * 62.5%: Base 10 font sizing (i.e. 1.0rem == 10px ) */
}

/* Ovo je pozadina na glavnom ekranu

 */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 150%;
    background-color: white;
    color: var(--my_orange);
}

a {
    color: lawngreen;
    text-decoration: none;
}

a:hover {
    color: var(--my_light_blue);
}

h1, h2, h3 {
    color: var(--my_orange);
}

p {
    color: black;
    margin-bottom: 20px;
}
.centered {
    text-align: center;
}

.row {
    /*margin-top: 40px;*/
}