* {
	/* background-color:beige; */
	/* font-size: large; */
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html {
	height: 100%;
	box-sizing: border-box;
	color: #333;
}

body {
	/* background: #EEAECA; */
	background-image: linear-gradient(0, #F0BDE3 0%, #8AE3EB 100%);
	/* background-image: linear-gradient(0,#F0BDE3 0%, #000000 20%); */
	height: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0;

	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

main {
	margin: 0 5vw;
	height: 100%;
}
section{
	display: flex;
	flex-direction: row;
}
section h3{
	width: 20%;
}

section p{
	font-size: large;
	width: 50%;
}

input,
button {
	border-radius: 5px;
	padding: 6px;
}

textarea {
	border-radius: 5px;
	background-color: azure;
	padding: 6px;
}


/* 										PROJECTS */

.project-name {
	text-decoration: underline;
	font-size: larger;

}

.admin-div {
	padding: 0 10vw;
}


/*																 CLIENTS */

.client-title {
	text-decoration: underline;
}

.hidden-div {
	display: none;
}

/* HOME */
#hero-section {
	/* height: 120vh; */
	display: flex;
}

/* NAV */
nav {
	padding-left: 5%;
	padding-top: 10vh;
	margin-bottom: 10vh;

}

#logo img {
	width: 25vw;
	margin-bottom: 50px;
}

#secondary-nav-wrapper {
	display: flex;
	width: 25vw;
	flex-direction: row;
	justify-content: space-between;
	font-size: 1.3rem;
}

footer {
	/* margin-top: auto; */
	height: 20vh;
	background-color: rgb(0, 0, 0);
}

/* INDEX PAGE */
h1 {
	z-index: 1;
}

#image-wrapper {
	position: relative;

}

#image-wrapper h2 {
	position: absolute;
	top: 50%;
}

#star {
	/* these make it go behind other elements*/
	position: relative;
	z-index: -1;
	/* Blends the floating and rotating animations together */
	animation: float 4s ease-in-out infinite, rotate 60s linear infinite;
}


/* The subtle up-and-down floating motion */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-30px);
		/* Moves up by 15 pixels */
	}

	100% {
		transform: translateY(0px);
	}
}

/* The slow, continuous rotation */
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
		/* Full circle */
	}
}

/* SERVICES  */
#services-section{
	display: flex;
	flex-direction: column;
}