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

body {
	font-family: sans-serif;
	padding: 50px;
	background-image: url('img/bg.jpg');
	color: #fff;
	background-size: cover;
	box-shadow: rgba(0, 0, 0, 0.8)0 0 0 10000px inset;
}

h1{ 
	text-align: center;
	margin-bottom: 100px;
	}

h2{
	margin-bottom: 15px;
}

button{
	cursor: pointer;
}

.logo{
	text-align: center;
	margin-bottom: 50px;
}

.main-wrapper {
	max-width: 650px;
	margin: auto;
	background-color: rgba(255, 255, 255, 0.3);
	padding: 50px;
}

form div{
	padding: 15px 0;
}

form div label{
	display: block;
	font-weight: bold;
	font-size: 16px;
}

form div input{
	height: 50px;
	width: 100%;
	font-size: 18px;
	padding: 0 10px;
}

form div button{
	cursor: pointer;
	padding: 10px 30px;
	font-size: 18px;

}
form ul{
	list-style: none;
}

form ul li{
	color: red;

}


.no-acc-register{
	text-align: center;
	margin-top: 50px;

}

.no-acc-register button{
	padding: 15px;
	font-size: 18px;
}

.no-acc-register p {

	font-size: 22px;
	margin-bottom: 15px;
}


.custom-modal{
	display: none;
background-color: black;
box-shadow: rgba(255, 255, 255, 0.8) 0 0 1000px 1000px;
max-width: 650px;
margin: auto;
padding: 50px;
position: absolute;
top: 10px;
left: 0;
right: 0;
width: 100%;
}

.custom-modal button#closeModal{
	height: 20px;
	width: 20px;
	color: white;
	background-color: transparent;
	border: 0;
	font-size: 25px;
	font-weight: bold;
	position: absolute;
	right: 30px;
	top: 30px;
}


/*posle lopginstranice*/
/*ovo je za levi deo stranice*/

.inner-container {
	border: 1px solid green;
	padding: 15px;
}

.inner-container.left-side {
	text-align: center;
}

.inner-container img.profile {
	width: 70%;
	border-radius: 50%;
	display: block;
	margin: auto;
	border: 5px solid black;
	margin-bottom: 20px;
}



/*desni deo stranice*/
.inner-container.right-side form {
	display: flex;
	height: 100px;
}

.inner-container.right-side form textarea {
	width: 85%;
	border: 0;
	padding: 10px;
	resize: none;
	outline-color: black;
}

.inner-container.right-side form button {
	width: 15%;
	border: 0;
}

#deleteProfile {
	border: 2px solid darkred;
	color: darkred;
	padding: 5px 15px;
}



/*ovo je za objave na profilu*/

#allPostsWrapper .single-post {
	background-color: #eaeaea;
	padding: 15px;
	margin-top: 15px;
	color: #000;
}



#allPostsWrapper .single-post .post-content {
	padding-bottom: 10px;
	border-bottom: 1px solid black;
	margin-bottom: 10px;
	font-size: 22px;
}





/*oov je za polje komentara*/

#allPostsWrapper .single-post .post-actions {
	display: flex;
	justify-content: space-between;
	color: grey;
}

#allPostsWrapper .single-post .post-actions div button.like-btn {
	background-image: url('img/like.png');
	padding: 5px 15px 5px 40px;
	background-repeat: no-repeat;
	background-position: 10px;
	border: 0;
}

#allPostsWrapper .single-post .post-actions div button.comment-btn {
	background-image: url('img/comment.png');
	padding: 5px 15px 5px 40px;
	background-repeat: no-repeat;
	background-position: 10px;
	border: 0;
}

#allPostsWrapper .single-post .post-actions div button.remove-btn {
	border-color: darkred;
	color: darkred;
	padding: 5px 15px;
}

#allPostsWrapper .single-post .post-comments form {
	height: 30px;
	margin-top: 15px;
}

#allPostsWrapper .single-post .post-comments form input {
	width: 85%;
	padding: 0 10px;
}

#allPostsWrapper .single-post .post-commments form button {
	width: 15%;
	background-color: grey;
}

#allPostsWrapper .single-post .post-comments {
	display: none;
}


#allPostsWrapper .single-post .post-comments .single-comment {
	border: 1px dotted green;
	padding: 10px;
	margin-top: 10px;
}
















