@import 'fonts.css';

* {
	box-sizing: border-box;
	font-size: 18px;
}

body {
	background: center / cover fixed url(../images/bg.png) no-repeat;
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
}

h1 {
	font-size: 2.25rem;
	font-weight: 500;
}

h2 {
	font-size: 1.25rem;
	font-weight: 400;
}

header {
	display: flex;
	justify-content: space-between;
	position: sticky;
	top: 0px;
}

nav {
	background-color: #e4d7d7;
	border-radius: 1em;
}

nav ul {
	display: flex;
	justify-content: space-around;
	list-style-type: none;
}

nav a {
	text-decoration: none;
}

.icon-noireko {
	display: flex;
	align-items: center;
}
.icon-noireko a {
	font-weight: 600;
	color: inherit;
	text-decoration: none;
}

.icon-noireko img {
	height: 2em;
	border-radius: 50%;
	margin-right: 0.5em;
}

main {
	width: 80%;
	margin: auto;
	background-color: white;
	border-radius: 1em;
	padding-block: 2em;
	margin-block: 5em;
}

main article {
	width: 80%;
	margin: auto;
}
