*{
    margin: 0px;
    padding: 0px;
    font-family: "Gill Sans", sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

html, body, footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body{
    min-height: 100vh;
    
    background-color: white;

}

.project{
    background-color: white;
    width: 40%;
    max-width: 40%;
    min-width: 400px;
    padding: 0px 20px;
    margin: 20px auto;
    border: 2px solid black;
    border-radius: 3px;
    box-shadow: 
    1px 2px 2px hsl(180, 25%, 68%),
    2px 4px 4px hsl(180, 25%, 68%),
    3px 6px 6px hsl(180, 25%, 68%);
    
    
}

.zaglavlje{
    width: 100%;
    height: 88px;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 30px;
}

.zaglavlje button{
    width: 120px;
    height: 40px;
    background-color: transparent;
    color: #6b616a;
    border: 0;
    font-size: 16px;
}

button,
button:focus,
button:active{
	border:0;
	background:none;
	outline:none;
	padding:0;
}


h1{
    width: 100%;
    text-align: center;
    min-height: 40px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 20px auto;
}

p{
    width: 100%;
    font-family: "Gill Sans", sans-serif;
    margin: 20px auto;
    line-height: 1.3;
}

img{
    width: 100%;
    object-fit: cover;
}

footer{
    width: 100%;
    text-align: center;
    min-height: 50px;
    margin-top: auto;
}

@media only screen and (max-width: 600px) {
  .project{
    max-width: 100%;
    width: 100%;
    min-width: 0px;
  }
}