@import url('./flaticon.scss');
@import url('https://fonts.googleapis.com/css2?&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');

body {
	font-family: 'DM Sans', sans-serif;
	font-size: 1.85vh;
	text-align: right;
	word-break: break-all;
	line-height: 175%;
	letter-spacing: 0.04em;
	height: 100%;
	color: hsla(0, 84%, 96%, 1);
	background-color: hsla(315, 83%, 31%, 1);
}

/* ---- for landscape phone screens ---- */
@media only screen and (max-height: 450px) {
	body { font-size: 0.85rem; }

	[class*="wrap_out"]::before,
	[class*="wrap_out"]::after {
		width: 61.8%;
	}

	[class*="wrap_in"] {
		width: 75%;
		max-width: 825px;
		margin: 5rem;
	}
}

/* ---- for all other screens ---- */
@media only screen and (min-width: 768px) {
	[class*="wrap_in"] {
		width: 61.8%;
		max-width: 825px;
		margin: 25rem 5rem 5rem;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: hsla(248, 83%, 85%, 1);
	padding: 0 0.25em;
	font-weight: 900;
	font-style: italic;
	-webkit-transition:  all 1s ease;
	-moz-transition:  all 1s ease;
	-ms-transition:  all 1s ease;
	-o-transition:  all 1s ease;
	transition:  all 1s ease;
}
a:visited {
	color: hsla(248, 83%, 15%, 1);
}
a:focus,
a:hover,
a:active {
	color: hsla(248, 83%, 45%, 1);
	filter: drop-shadow(0 0.1em 0.25em hsla(315, 83%, 5%, 1));
	background-color: hsla(315, 83%, 83%, 1);
	border-radius: 0.15em;
}

h1, h2, h3 {
	font-weight: 700;
	display: inline;
	clear: none;
}

.wrap_outer {
	display: flex;
  justify-content: flex-end;
	align-items: center;
	height: 100vh;
	width: 100vw;
	overflow: auto;
	position: relative;
	z-index: 1;
}
.wrap_outer::before {
	content: "";
	position: absolute;
	right: 0;
	height: 100%;
	width: 50%;
	background-image: linear-gradient(to right, hsla(315, 83%, 31%, 1) 27%, hsla(315, 83%, 83%, 0));
	z-index: -50;
}
.wrap_outer::after {
	content: "";
	position: absolute;
	right: 0;
	height: 100%;
	width: 38.2%;
	opacity: 0.25;
	filter: invert(1);
	background-image: url("../img/txu-pclmaps-topo-ca-agua_dulce-1948.jpg");
	background-size: 1250%;
	background-position: 35% 10%;
	z-index: -100;
}

.wrap_inner {
	margin: 10vh 3.75vh 5vh;
}

.dropshadow {
	filter: drop-shadow(0 0.05em 0.1em hsla(315, 83%, 5%, 1));
	clear: none;
}
