@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
	background-color: rgba(0, 0, 0, 1); /* Black #000000 */
	min-height: 100vh;
	margin: 0px;
	padding: 0px;	
}

/*---fonts---*/
.knewave-regular {
	font-family: "Knewave", system-ui;
	font-weight: 400;
	font-style: normal;
}

.roboto-standard {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/*---structure---*/

.wrapper {
	display: flex;  
	flex-flow: row wrap;
}

.wrapper > * {
	flex: 1 100%;
}

.header {

}

.subheadbox {
	border: solid 2px #B02FA1;
	padding: 10px 15px 10px 15px;
	background: rgba(255, 255, 255, 0.5);
	margin: 50px auto;
	max-width: 625px;	
}

.main {
	background: #FFd9EE;
	background-image: url("images/background.png");  
}

.aside-1 {
	background: #E0C179;
	background-image: url("images/background.png");  	
}

.footer {
	background:#4262B9;
	font-family: 'Roboto';
	font-size: clamp(10px, .65vw, 14px);
	color: #FFFFFF;
	text-align: center;
}

.footer a {
	text-decoration: none;
	color: #FFFFFF;	
}

@media all and (min-width: 600px) {
	.aside { flex: 1 0 0; }
}

@media all and (min-width: 800px) {
	.main { flex: 1 0px; }
	.aside-1 { order: 1; }
	.main    { order: 2; }
	.footer { order: 3; }
}

/*---navigation---*/
.navigation {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	list-style: none;
	margin: 0; 
	background: #799AE1;
}

.navigation a {
	text-decoration: none;
	font-family: Knewave;
	font-size: clamp(22px, 1.5vw, 38px);
	letter-spacing: .1vw;
	display: block;
	padding: 1em;
	color: #FFFFFF;
}

.navigation a:hover {
	background: #1565C0;
}

@media all and (max-width: 800px) {
  .navigation {
    justify-content: space-around;
  }
}

@media all and (max-width: 600px) {
  .navigation {
    flex-flow: column wrap;
    padding: 0;
  }
  .navigation a { 
    text-align: center; 
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255,0.3); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
  }
  .navigation li:last-of-type a {
    border-bottom: none;
  }
}

/*---Blockquote---*/
blockquote {
	background: #FFFFFF;
	margin: 50px auto;
	width: 50%;
	max-width: 500px;
	font-family: 'Roboto';
	font-weight: bold;
	font-size: clamp(14px, .75vw, 20px);	
}

.stacked {
	border: solid 2px #B02FA1;
	padding: 20px 30px 20px 30px;
	box-shadow: 13px 13px 0 0 #E0B3D4,
			  15px 15px 0 0 #B02FA1,
			  15px 11px 0 0 #B02FA1,
			  11px 15px 0 0 #B02FA1;
}

/*---H Tags---*/
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto';
	font-weight: bold;
	font-size: clamp(20px, 2vw, 35px);	
	text-align: center;
	background-image: linear-gradient(to right, #553c9a 45%, #ee4b2b);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
}