@import url('https://fonts.googleapis.com/css2?family=Bungee+Outline&display=swap');

/***************************
        OSNOVNI CSS
***************************/

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0097fb;
    font-family: Arial, sans-serif;
}

.container1 {
    width: 1050px;
    height: 750px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 1;
}

.container2 {
    width: 1000px;
    height: 700px;
    background-color: #fff;
    overflow-y: auto;
    padding: 20px;
    z-index: 2;
}


/***************************
        HEADER
***************************/

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 10px;
    border-bottom: solid 1px black;
    background-color: white;
}

nav .navLink {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}
nav .navLink:hover {
    color: #0097fb;
}

.noLink {
    cursor: default;
}


/***************************
        CONTENT
***************************/

.content {
    font-size: 14px;
    line-height: 1.6;
}

p {
    margin: 0 0 10px;
}

ul {
    margin-top: -10px;
    margin-left: -10px;
}

h1 {
    padding-top: 35px;
    margin: auto;
    text-align: center;
    font-family: "Bungee Outline", serif;
    font-size: 50px;
    color: #007ed2;
}

h2 {
    padding-top: 50px;
    margin: auto;
    text-align: center;
}

h3 {
    margin-bottom: 10px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    margin-bottom: 20px;
}

.uvlaka1 {
    margin-left: 5px;
}

.uvlaka2 {
    margin-left: 20px;
}

.uvlaka3 {
    margin-left: 35px;
}

.uvod, .metaViewport, .jediniceMjere, .mediaQuery, .primjeri {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

pre {
    margin-left: -8px;
}

.tamnoPlava {
    color: blue;
}

.svjetloPlava {
    color: rgb(0, 123, 255);
}

.narancasta {
    color: rgb(255, 111, 0);
}

.zuta {
    color: rgb(202, 155, 0);
}

.zelena {
    color: rgb(94, 191, 94);
}

.komentar {
    color: green;
}

.ruzicasta {
    color: rgb(255, 1, 217);
}


/***************************
        FOOTER
***************************/


footer {
    text-align: center;
    padding: 10px 0;
}


/***************************
        RESPONZIVNOST
***************************/

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .noLink {
        visibility: hidden;
    }
}

@media (max-width: 1050px) {
    .container1 {
        height: 1080px;
    }

    .container2 {
        height: 100%;
    }
}