@import url(../components/palette.css);

.arrows {
	width: 60px;
	height: 72px;
	position: absolute;
	left: 50%;
	margin-left: -10px;
	bottom: 0px;
	z-index: 3;
  }
  
  .arrows path {
	stroke: rgb(251, 255, 0);
	fill: transparent;
	stroke-width: 1px;
	animation: arrow 2s infinite;
	-webkit-animation: arrow 2s infinite;
  }
  
  @keyframes arrow {
	0% {
	  opacity: 0;
	}
	40% {
	  opacity: 1;
	}
	80% {
	  opacity: 0;
	}
	100% {
	  opacity: 0;
	}
  }
  
  @-webkit-keyframes arrow {
	0% {
	  opacity: 0;
	}
	40% {
	  opacity: 1;
	}
	80% {
	  opacity: 0;
	}
	100% {
	  opacity: 0;
	}
  }
  
  .arrows path.a1 {
	animation-delay: -1s;
	-webkit-animation-delay: -1s;
  }
  
  .arrows path.a2 {
	animation-delay: -0.5s;
	-webkit-animation-delay: -0.5s;
  }
  
  .arrows path.a3 {
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
  }
  
.header {
	padding: 20% 20px;
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-image: url("bag.jpg");
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Make header images scale on small screens */
.header img {
	width: 520px;
	max-width: 100%;
	height: auto;
	display: block;
} 

.header-text {
	text-align: center;
	text-transform: uppercase;
	color: var(--secondary-tc);
	font-family: 'Panton', sans-serif;
}

.header h1 {
	margin: 0;
	font-size: 100px;
	text-shadow: 0px 4.5px 0px #000000a2;
}

.header span {
	margin: 0;
	font-size: 40px;
	text-transform: initial;
	text-shadow: 0px 1.5px 0px #000000a2;
}

@media screen and (min-width: 320px) and (max-width: 999px) {
	.header {
		padding: 40px 20px;
		min-height: 100px;
		/* prevent fixed background on mobile devices */
		background-attachment: scroll;
	}

	.header-text h1 {
		font-size: 55px;
	}

	.header-text span {
		font-size: 16px;
	}

	@media screen and (min-width: 424px) {
		.header {
			padding: 50px 20px;
			min-height: 110px;
		}

		.header-text h1 {
			font-size: 70px;
		}

		.header-text span {
			font-size: 26px;
		}
	}
}