/* CSS Document */
/* the red halo
julianne aguilar
juliannes.website
2021 */

html, body {
	min-height: 100%;
}

body {
	margin: 0;
	padding: 0;
	-webkit-animation: bg 10s linear infinite alternate;
    animation: bg 10s linear infinite alternate;
}

a {
	color: #fff;
}

iframe {
	box-shadow: 15px 15px #2871fa;
}

a:link a:visited a:active a:hover {
	color: #fff;
    text-decoration-skip-ink: auto;
    text-decoration-color: #fff;
    text-decoration-thickness: .125em;
    text-underline-offset: 1.5px;
}

#theRedHalo {
	position: absolute;
	z-index: -1;
	height: 100vh;
	width: 100vw;
	max-width: 100%;
	overflow: hidden;
}

.hiddenPark {
	position: relative;
	z-index: -1;
	width: 30vw;
	height: 10vw;
	background-image: linear-gradient(45deg, #94e062, #20e3a1);
	top: 20%;
	left: 10%;
	box-shadow: 15px 15px #6717cd;
}

.galeriaPlaza {
	position: relative;
	z-index: -1;
	height: 10vw;
    width: 25vw;
    border-radius: 50%;
	background-image: linear-gradient(45deg, #d09292, #c82270);
	top: 50%;
	left: 60%;
	box-shadow: 15px 15px #6717cd;
}

#container {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: auto;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.info {
	width: 100vw;
	height: 100vh;
	max-width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.info p {
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
	color: #6717cd;
	font-size: 10vw;
	text-shadow: 10px 10px #2871fa;
}

.content {
	width: 100vw;
	height: auto;
	max-width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.content h1 {
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
	color: rgba(255,255,255,0.70);
	font-size: 5vw;
}

.content img {
	max-height: 50vw;
	max-width: 50vw;
	box-shadow: 15px 15px #2871fa;
}

.content h2 {
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
	color: rgba(255,255,255,0.70);
	font-size: 3vw;
}

.content div {
	max-width: 100%;
	margin: 20px;
	padding: 0;
}

.note {
	width: 50vw;
	height: auto;
}

.map {
	max-height: 50vw;
	max-width: 50vw;
}

.textBox {
	width: 80vw;
	height: 80vh;
	overflow: scroll;
	box-shadow: 15px 15px #2871fa;
	background: rgba(255,255,255,0.70);
	padding: 10px;
}

.textBox p {
	font-family: "Times New Roman", Times, serif;
	color: #6717cd;
	font-size: 2vw;
	font-style: italic;
}

.textBox::-webkit-scrollbar {
	width: 10px;
}

.textBox::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.90);
}

@-webkit-keyframes bg {
	0% {background-color:#6717cd;} 
	100% {background-color:#2871fa;}
}

@keyframes bg {
	0% {background-color:#6717cd;} 
	100% {background-color:#2871fa;}
}