﻿@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Lora:wght@400;700&display=swap');

body {
	font-family: "Merriweather", serif;
	color: #4E342E;
	width: 100%;
	background-color: #F5EDE0;
	margin: 0 auto;
}

header h1 {
	text-align: center;
}

header a {
	text-decoration: none;
	color: #4e342e;
}

header a:hover {
	color: #237d32;
}

nav ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	padding: 0;
}

nav ul li {
	margin: 0 0 0 25px;
}

main h2,aside {
	text-align: center;
}

main {
	margin: 0 auto;
	width: 90%;
}

h3 {
	background-color: #f8f8f8;
	color: #237d32;
	border-left:10px solid #237d32;
	padding: 0 0 0 5px;
}

h4 {
	border-bottom: 1px solid #237d32;
	border-left: 10px solid #237d32;
	padding: 0 0 0 5px;
}

.coffee_01,
.items_01 {
	display:flex;
	justify-content: space-evenly;
}

.howto_01 {
	display: flex;
	margin: 10px;
	justify-content: space-evenly;
}

.items_01 div{
	width: 800px;
}

footer {
	text-align: center;
	padding: 25px 0;
}

footer ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	padding: 0;
}

footer ul li {
	margin: 0 0 0 25px;
}

footer div {
	margin: 0 0 20px 0;
}

a {
	text-decoration: none;
	color: #4e342e;
}

a:hover {
	text-decoration: underline;
	color: #2e7d32;
}

.img_area {
	background-color: #fff;
	max-width: 300px;
	height: 300px;
}

.howto_02 {
	width: 350px;
}

@media (max-width: 768px) {
	.howto_01,
	.items_01 {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.img_area {
		background-color: #fff;
		max-width: 350px;
		height: 350px;
	}
}
