/* medium screens */


@media all and (min-width: 600px) {
	.wrapper { display: flex; flex-direction: row }
}


/* large screens */

@media all and (min-width: 800px) {
	.header { order: 1; display: flex; justify-content: space-between; align-items: right; flex-direction: row }
	.aside { order: 2 }
	.content { order:3; padding: 45px; margin: 10px }
	.footer { order: 4 }
	.nav ul { display: flex; flex-direction: row }
}

.nav ul {
	list-style-type: none;
}

.nav ul li {
	padding: 10px;
	margin: 5px 10px 5px;
	display: inline-block;
}

.nav a {
	color: black;
	text-align: center;
	text-decoration: none;
	font-size: 1.2rem;
	padding: 15px;
	margin: 5px;
	font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace; 
}

.socials ul { 
	list-style-type: none; 
	display: flex;
	padding: 15px;
	margin-left: 65px;
}

.socials li {
	padding-right: 15px;
	margin: 5px;
}

.socials a {
	color: black;
}

.content ul {
	list-style-type: none;
	padding: 25px;
}

.post ul li {
	list-style-type: square;
	padding: 5px;
}

.post ol li {
	padding: 5px;
}

.content h2 a {
	color: #8C7051;
}

.content a {
	color: #47682C;
}

.content img {
	border-radius: 15px;
	max-width: 100%;
	height: auto;
}

.about-img img {
	width: 400px;
}

.container > * {
	flex: 1 100%;
}

.date-metadata {
	display: inline-block;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.aside {
	margin-right: auto;
	padding: 50px;
}

.profile img {
	border-radius: 45%;
	width: 200px;
	margin: 15px;
}

.page-top {
	padding: 25px;
	margin: 20px;
	background: #47682C;
	color: white;
	border: 1px dotted black;
}

.page-top a {
	color: cornsilk;
}
.footer {
	background-color: #f5f5f5;
	display: flex;
	justify-content: space-between;
	padding: 25px ;
	margin-top: auto;
}

.other-things, .blogroll {	
	list-style-type: none;
	display: flex;
	flex-direction: column;
	margin-left: -40px;
}


.add-blogroll {
	background-color: #EF3054;
	border-radius: 15px;
	display: inline-block;
	padding: 15px;
	font-size: 1rem;
	font-weight: normal;
	margin-left: -25px;
}

.aside h2 {
	color: #EF3054;
}

.aside a {
	text-decoration: none;
	color: #8C7051;
}

.add-blogroll a {
	color: white;
}


.pagination {
	display: flex;
}

h1, h2, h3 {
	font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif; 
  color: black;
}

h1, h2, h3, a {
	text-decoration: none;
}


.profile a {
	color: white;
	font-size: 3rem;
	background: #8C7051;
	transform: skewY(-5deg);
	display: inline-block;
	padding: 25px;
}

. content h2 {
	font-weight: normal;
	font-size: 1.6rem;
}


body {
	 font-family: ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT', 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif; 
	 background-color: whitesmoke;
	 font-size: 1.2rem;
	 flex-direction: column;
	 display: flex;
	 min-height: 100vh;
}


input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

