/*
———————————————————————————————————
:) ANIMATED SMILEY MENU :)
———————————————————————————————————
*/

#smiley {
	margin-left: auto;
	margin-bottom: -100px;
	right: 8%;
	position: fixed;
}

.smileyAnchor:focus {
	outline: none;
}

.spin {
	animation: rotate 1s linear infinite;
  	animation-play-state: paused;
  	animation-delay: calc(var(--scroll) * -1s);

  	animation-iteration-count: 1;
  	animation-fill-mode: both;
}

#smiley:hover path {
	fill: #FF8686;
}



/*
———————————————————————————————————
NAV
———————————————————————————————————
*/

.nav {
	display: inline-block;
	height: 100px;
	margin-bottom: 7%;
	border-bottom: 2px solid #4857FE;
	border-top: 2px solid #4857FE;
}

.navItem {
	display: inline-block;
	font-family: "Lemur";
	font-weight: 500;
	font-size: 24px;
	padding: 34px 50px 40px 0px;
	text-decoration: none;
}

.navItem:last-child {
	padding: 0px 5px 0px 0px;
}

.navItem:focus {
	outline: none;
	text-decoration: underline;
}

.navActive::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	margin-right: 7px;
	transform: translate(0px, -2px);
	background-color: #4857FE;
}

.navActive:hover::before {
	background-color: #FF8686;
}

.footer {
	display: inline-block;
	width: 100%;
	height: 100px;
	border-top: 2px solid #4857FE;
}

.footer .navItem {
	font-size: 21px;
	padding-bottom: 0px;
}

.footer p {
	margin-top: 35px;
}




/*
———————————————————————————————————
HOMEPAGE (BEHAVES DIFFERENTLY)
———————————————————————————————————
*/

.blueBody {
	background-color: #4857FE;
	height: 100vh;
	overflow: hidden;
}

.centerContainer {
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	text-align: center;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column
}

#arch {
	position: absolute;
	left: 0;
	right: 0;
	top: 50px;
	margin-left: auto;
	margin-right: auto;
	width: 80vw;
	max-width: 1200px;
	height: auto;
	z-index: -10;
}



/*
———————————————————————————————————
GLOBAL
———————————————————————————————————
*/

html {
    cursor: url('cursor.svg'), auto;
}

body {
	margin-top: 0px;
	background-color: #FFEFEF;
}

.everything {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 7%;
	margin-bottom: 7%;
}



/*
———————————————————————————————————
TYPOGRAPHY
———————————————————————————————————
*/

@font-face {
  font-family: Swear;
  src: url(Swear_Display-Medium_Cilati.woff2);
}

@font-face {
  font-family: Lemur;
  src: url(Lemur-Regular.woff2);
}

h1 { /* Large Lemur */
	width: 80%;
	max-width: 1100px;
	margin-top: 0px;
	margin-bottom: 7%;
	font-family: "Lemur";
	font-weight: 100;
	font-size: 64px;
	color: #4857FE;
}

h2 { /* Large Scaling Swear */
	font-family: "Swear";
	color: #4857FE;
	font-size: 8.5vw;
	margin-top: -5vw;
	margin-bottom: 20px;
}

h3 { /* Large Swear */
	font-family: "Swear";
	color: #4857FE;
	font-size: 96px;
	margin: 0;
	margin-bottom: 10%;
	width: 80%;
	line-height: 96px;
}

h4 { /* Small Swear */
	font-family: "Swear";
	color: #4857FE;
	font-size: 48px;
	margin: 0;
	line-height: 48px;
	display: inline-block;
	flex: 1 1 0px;
}

h5 { /* Medium Lemur */
	display: inline-block;
	font-family: "Lemur";
	font-weight: 500;
	font-size: 36px;
	color: #4857FE;
	margin: 0;
}

h6 { /* Small Lemur (EYEBROWS) */
	display: inline-block;
	font-family: "Lemur";
	font-weight: 500;
	font-size: 24px;
	color: #4857FE;
	margin-top: -10px;
	margin-bottom: 40px;
}

p {
	font-family: "Lemur";
	font-weight: 500;
	font-size: 21px;
	line-height: 32px;
	color: #4857FE;
	margin: 0;
	flex: 1 1 0px;
}

.pSmall {
	margin-top: 20px;
	font-size: 18px;
	line-height: 28px;
}



/*
———————————————————————————————————
LAYOUT CONTAINERS
———————————————————————————————————
*/

.middleTextBox {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10%;
}

.doubleTextBox {
	width: 100%;
	margin-bottom: 10%;
	display: flex;
	align-items: baseline;
}

.doubleTextBox h4 {
	padding-right: 20px;
}

.doubleTextBox p {
	padding-left: 20px;
}

.centered {
	text-align: center;
}

.threeUp {
	width: 100%;
	margin-bottom: 10%;
}

.columnHeader {
	width: 50%;
}

.columns {
	width: 100%;
	display: flex;
	align-items: baseline;
	margin-top: 80px;
}

.singleColumn {
	flex: 1 1 0px;
	padding-left: 13px;
	padding-right: 13px;
}

.singleColumn:first-child {
	padding-left: 0px;
	padding-right: 27px;
}

.singleColumn:last-child {
	padding-left: 27px;
	padding-right: 0px;
}

.twoUp {
	width: 100%;
	margin-bottom: 10%;
	display: flex;
	align-items: flex-start;
}

.doubleColumn {
	flex: 1 1 0px;
}

.doubleColumn:first-child {
	padding-left: 0px;
	padding-right: 3%;
}

.doubleColumn:last-child {
	padding-left: 4%;
	padding-right: 0px;
}

.doubleColumn.big {
	flex: 1.5 1 0px;
	padding-right: 8%;
}


/*
———————————————————————————————————
LINKS
———————————————————————————————————
*/

a { /* APPLIES TO ALL LINKS */
	color: #4857FE;
	cursor: url('pointer.svg'), auto;
}

a:hover {
	color: #FF8686;
}

a:focus {
	color: #FF8686;
	outline: 4px dashed #FF8686;
}

a:active {
	outline: none;
}

.smileyLink:focus {
	outline: none;
}

.bigLink {
	text-decoration: none;
	font-family: "Swear";
	font-size: 96px;
	display: inline-block;
	margin-top: 0px;
	margin-bottom: 10px;
}

.bigLink:hover {
	color: #FF8686;
}

.bigLink:focus {
	color: #FF8686;
	outline: 4px dashed #FF8686;
}

.hoverImage {
	position: absolute;
	height: 400px;
	width: 600px;
	margin-top: -270px;
	right: 8%;
	z-index: -10;
	display: none;
}

.bigLink:hover + .hoverImage {
	display: block;
}

.back {
	text-decoration: none;
	display: inline-block;
	font-family: "Lemur";
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 3%;
	padding: 10px;
	margin-left: -10px;
	transition: margin-left 0.1s;
	outline: none;
}

.back:hover {
	color: #FF8686;
	margin-left: -15px;
	transition: margin-left 0.1s;
}

.back:focus {
	color: #FF8686;
	outline: 4px dashed #FF8686;	
}

.cta {
	text-decoration: none;
	display: inline-block;
	font-family: "Lemur";
	font-weight: 500;
	font-size: 24px;
	color: #4857FE;
	border-style: solid;
	border-width: 2px;
	border-color: #4857FE;
	padding: 15px 25px 18px 25px;
	-webkit-box-shadow: 2px 2px 0px 0px #4857FE; 
	box-shadow: 2px 2px 0px 0px #4857FE;
	transition: 0.1s ease;
}

.cta:hover, .cta:focus {
	background-color: #4857FE;
	color: #FFEFEF;
	transform: translate(0px, -2px);
	transition: 0.1s ease;
}

.resumeCta {
	display: inline-block;
	margin-bottom: 7%;
	margin-top: 4%;
}

.textLink {
	
}



/*
———————————————————————————————————
CONTENT
———————————————————————————————————
*/

video {
	margin-bottom: 10%;
}

.inlineVideo {
	margin-bottom: 0;
}

.fullImage {
	width: 100%;
	margin-bottom: 10%;
}

.inlineImage {
	width: 100%;
}



/*
———————————————————————————————————
PASSWORD
———————————————————————————————————
*/

.passCenter {
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	text-align: left;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column
}

.passContainer {
    max-width: 420px;
	margin-left: auto;
	margin-right: auto;
    border-radius: 20px;
    text-align: left;
    box-sizing: border-box;
}

.passRow {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.passContainer p {
    color: #191404;
}

.passButton {
    font-family: "Lemur";
	font-weight: 500;
	font-size: 21px;
	line-height: 32px;
	margin: 0;
    text-decoration: none;
    flex: none;
}

.passLeftAlign {
    width: 420px;
    text-align: left;
}

.denied {
    color: #DCB7B7;
    cursor: url('cursor.svg'), auto;
}

.denied:hover {
    color: #DCB7B7;
}

.granted {
    color: #4857FE;
    cursor: url('pointer.svg'), auto;
}

.granted:hover {
    text-decoration: none;
}

input {
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: "Lemur";
	font-weight: 500;
	font-size: 21px;
	line-height: 32px;
	color: #4857FE;
	margin: 0;
    border-radius: 10px;
    border: none;
    outline: none;
    background: #FFFFFF;
    min-width: 10px;
    flex-grow: 1;
    flex-shrink: 1;
    box-sizing: border-box
}

input::placeholder {
    color: #E3C4C4;
}

input:focus {
    outline: 2px solid #4857FE;
}



/*
———————————————————————————————————
BREAKPOINTS
———————————————————————————————————
*/

.hamburger {
	display: none;
	position: absolute;
	margin-left: 20px;
	margin-top: 15px;
	font-family: "Lemur";
	font-weight: 500;
	font-size: 24px;
	text-decoration: none;
}

#mobileMenu {
  	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	height: 0vh;
	width: 100%;
	background-color: #4857FE;
	z-index: 20;
	transition: 0.3s ease;
}

.mobileMenuItem {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 40px;
	color: #ffffff;
	font-family: "Swear";
	font-size: 64px;
	line-height: 48px; 
	text-decoration: none;
}

#mobileMenu .hamburger {
	position: relative;
	display: inline-block;
	color: #ffffff;
	margin-left: 20px;
	margin-bottom: 50px;
	margin-top: 38px;
}

#menuSmiley {
	position: absolute;
	right: 9px;
	top: 20px;
	height: 70px;
}

@media screen and (min-width: 1800px) {
	
	.everything {
		width: 1520px;
	}
	h2 {
		font-size: 152px;
		margin-top: -90px;
	}
}

@media screen and (max-width: 900px) {
	
	#arch {
		width: 90%;
		margin-top: 20px;
	}
	
	.centerContainer {
		justify-content: flex-start;
		margin-top: 50px;
	}
	
	.hamburger {
		display: block;
	}
	
	#smiley {
		height: 70px;
		right: 10px;
	}
	
	.nav {
		display: none;
	}
	
	.back {
		margin-top: 10px;
	}
	
	/* TYPE STYLES */
	
	h1 {
		font-size: 42px;
		width: 100%;
		margin-bottom: 80px;
		padding-top: 120px;
	}
	
	h2 {
		font-size: 42px;
		margin-bottom: 10px;
	}
	
	h3 {
		font-size: 64px;
		line-height: 66px;
		width: 100%;
		margin-top: 50px;
		margin-bottom: 80px;
	}
	
	h5 {
		font-size: 26px;
	}
	
	.blueBody h5 {
		font-size: 22px;
	}
	
	.blueBody .cta {
		margin-top: -20px;
	}
	
	h6 {
		font-size: 21px;
		display: block;
		margin-bottom: 20px;
	}
	
	p {
		font-size: 18px;
		line-height: 26px;
	}
    
    .privateP {
        padding-top: 120px;
    }
	
	.bigLink {
		font-size: 64px;
		line-height: 64px;
		margin-bottom: 20px;
	}
	
	.twoUp h4 {
		margin-top: 80px;
	}
	
	/* LAYOUT */
	
	.middleTextBox, .doubleTextBox, video, .fullImage {
		margin-bottom: 80px;
	}
	
	body {
		margin: 0;
	}
	
	.everything {
		margin: 20px;
		width: auto;
	}
	
	.middleTextBox {
		width: 90%;
	}
	
	.doubleTextBox {
		width: 90%;
		margin: auto;
		margin-bottom: 10%;
		flex-direction: column;
	}
	
	.doubleTextBox p {
		padding: 0;
		margin-top: 20px;
	}
	
	.twoUp {
		flex-direction: column;
	}
	
	.doubleColumn {
		width: 100%;
	}
	
	.doubleColumn:first-child {
		padding-left: 0px;
		padding-right: 0%;
	}

	.doubleColumn:last-child {
		padding-left: 0%;
		padding-right: 0px;
	}
	
	#selfie {
		margin-top: 100px;
	}
	
	.resumeCta {
		margin-top: 100px;
	}
    
    /* PASSWORD */
    
    .passContainer {
        width: 80%;
    }

    
}
