/* base styling */
:root {
		--text: #494941;
		--border: #494941;
		--bg: #6A9870;

		a:link { color: var(--text); }
	  a:link { text-decoration: none; }

	}
/* /base styling */


* { 
	box-sizing: border-box;
}
body {
	font-family: sans-serif;
	color: var(--text);
	background-color: #4C725F; /* taustaväri joka kaiken takana, vihertävä siis */
}

.parent {
	max-width: 1250px;     /* original oli 55rem; */
	margin: 1vw auto 12px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;

}
/* these control the column widths */
.navigation { flex: 0 0 16%; }
.main-box-container { flex: 1 1 80%; }

/*                          ISO BANNERI 1250x400px          */
header {
	height: auto;                                /* change banner height here*/
	border: 10px ridge #D3C257;
	border-radius: 2px;

	img{
		height: 100%;
}
}
/*                          /ISO BANNERI           */


nav {
	/* navigaatio-boksi */
	border: 2px ridge var(--border);
	border-radius: 5px;
	padding: 14px;
	background: #F6F5DB;
  /* sticky nav seuraavat 3 riviä */
  position: sticky;
  top: 0;
  overflow: hidden;

}

nav a {
/*                                    NAVIGAATION PAINIKKEET */
	display: block;
	margin: 5px;
	background: #FFFEE2;
	border: 1px ridge var(--border);
	border-radius: 5px;
	padding: 5px 7px;
	text-decoration: none;
}
nav a:link, nav a:visited { 
	color: var(--text);
}
nav a:hover, nav a:focus {
	background: #F6F5DB;
}

/* .main-box-container {
	display:block;
} */

.subnav a {
	display: inline-grid;
	margin: 5px;
	background: #FFFEE2;
	border: 1px ridge var(--border);
	border-radius: 5px;
	padding: 5px 7px;
	text-decoration: none;  

}

section {
  /* borderit isoille sisältöbokseille */
	border: 2px ridge var(--border);
	border-radius: 5px;
	background: #F6F5DB;
	padding: 10px 28px 14px 28px; /* top, right, bottom, left*/
	margin: auto auto 5px auto;
	display:flex;
	flex-wrap: wrap;

	         .box {
	         flex-grow: 1;
	         flex-shrink: 1;
	         flex-basis: auto;
	         text-align:center;
	         width:100%;
        	}
	
	.profile-container {
		display:flex;
		flex-wrap: wrap;
		justify-content:space-between;
	}
	
		}

article {
  margin: 5px;
	background: #FFFEE2;
	border: 1px ridge var(--border);
	border-radius: 5px;
	padding: 5px 5px 5px 5px;

  
	img {
		width:300px;
		border-radius: 5px;
	}
	
}

footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}
h1 { 
	font-size: 1.4rem;
	font-weight: normal;
	text-align: center;
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: 1rem;
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:visited {
	color: var(--text);
}