@import "global.css";
@import "grid.css";
.tagline h1{
	color: var(--navy);
	text-shadow: 2px 2px 8px var(--shadow);
}
.drips{
	position: relative;
	overflow: hidden;
}
.drips::before {
	margin-top: 100px;
	content: '';
	display: block;
	background-image: url(../images/graphics/bannerteal.png);
	aspect-ratio: 1518/478;
	width: 100%;
	position: absolute;
	z-index: -2;
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 1920px;
	min-width: 1600px;
}

.projButton {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto, 10px;
	width: 100%;
	border-radius: 40px;
	background-color: var(--navy);
	box-shadow: 0px 3px 10px 1px var(--shadow);
	color: var(--white);
	font-family: 'Figree', sans-serif;
	font-size: 1.75rem;
	transition: all 200ms ease;
}
.projButton:hover{
	box-shadow: 0px 3px 10px 3px var(--shadow);
	color: var(--mint);
    text-shadow: 0px 2px 5px var(--shadow);
}
.projButton:active{
	color: var(--blue);
}

.container {
	margin-top: 100px;
	margin: 0 auto;
}
.copy {
	text-shadow: 2px 2px 6px var(--shadow);
}
.logo {
	width: 100%;
	height: 0px auto;
	display: flex;
	justify-content: right;
}
.tagline {
	margin-top: 50px;
}
.logo img{
	width: 50%;
	height: 0px auto;
	justify-content: right;
}
.thank{
	color: var(--white);
	text-shadow: 2px 2px 8px var(--shadow);
	font-size: var(--fluid-thank);
}
.fullWidth{
	width: 100vmax;
}
@media screen and (min-width: 1080px){
	.logo img{
		width: 100%;
		height: 0px auto;
	}
}
