
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&family=Sono:wght@500&display=swap');

* {
	padding:0px;
	margin:0px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

header, footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
}

header {
    display: flex;
    height: 100px;
    background-color: #555;
    font-family: 'JetBrains Mono', monospace;
	color:#0E9CEF;
    justify-content: center;
    flex-direction: column;
}

footer {
    height: 50px;
}

nav {
    display: flex;
    background-color: #333;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-grow: inherit;
}

nav a {
    color: #ccc;
    text-decoration: none;
    padding: 15px;
}

main {
    display: flex;
    width: auto;
}

aside {
    width: 200px;
    background-color: #ddd;
    padding: 20px;
    padding: 30px;
}

article {
    display: flex;
    background-color: #eee;

    flex-direction: column;
    padding: 20px;
    margin: 20px;
}

article h1 {
    margin-bottom: 20px;
    color: #333;
}img{
    display: flex;
    width: 500px;
}
.prva{
    width: 500px;
    justify-content: right;
}
.druga{
    width: 500px;
    justify-content: right;
}
.main{
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-evenly;
    flex-direction: column;
}
@media (max-width: 728px) {
    aside{
        width: 100%;
    }
    main{
        flex-wrap: wrap;
    }
}


