@font-face {
    font-family: 'FuturaIB';
    src: url('/styles/font_futuraib.woff2') format('woff2'),
         url('/styles/font_futuraib.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@keyframes slideInFromTop {
	0% {
	  transform: translateY(-35%);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0);
	  opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
	  opacity: 0;
	}
	100% {
	  opacity: 1;
	}
}

body {
	font-family: FuturaIB;
	text-align: center;
	background-color: black;
	max-width: 1300px;
	margin: auto;
}
  
.container {
	display: grid;
	grid-template-columns: 1fr 2.5fr 1fr;
	grid-template-rows: auto 1fr;
	min-height: 100vh;
	animation: 2s ease-out 0s 1 fadeIn;
}
  
#title {
	grid-column: span 3;
	padding: 20px;
	font-size: 16vmin;
	background-color: #ccff00;
	color: #ed1c24;
}
 
#content{
	display: grid;
	grid-template-rows: auto auto auto;
}

#sub-title {
	padding-top: 4vmin;
	color: #ed1c24;
	font-size: 11vmin;
	text-shadow: 0.3vmin 0.3vmin #ccff00;
}

#when {
	display: flex;
  	justify-content: center;
  	align-items: center;
	color: #ccff00;
	font-size: 7vmin;
	text-shadow: 0.5vmin 0.5vmin #ed1c24;
}
   
#where {
	display: flex;
  	justify-content: center;
  	align-items: flex-end;
	color: #ed1c24;
	font-size: 7vmin;
	text-shadow: 0.3vmin 0.3vmin #ccff00;
}

#where .wrapper {
	padding-bottom: 4vmin;
}

#fire1 {
	display: flex;
	flex: 1;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 5px;
	margin-bottom: 0%;
	animation: 6s ease-out 0s 1 slideInFromTop;
}

#fire2 {
	display: flex;
	flex: 1;
	align-items: flex-end;
	padding: 5px;
	margin-bottom: 0%;
	animation: 6s ease-out 0s 1 slideInFromTop;
}

img {
	width: 100%;
  	object-fit: cover;
}

a {
	color: #ed1c24;
	text-decoration: none;
	font-size: 4vmin;
	text-shadow: none;
}

a:link {
	color: #ed1c24;
	text-decoration: none;
}

a:hover {
	color: #ed1c24;
	text-decoration: none;
	text-shadow: 0.3vmin 0.3vmin #ccff00;
}

a:active {
	color: #ed1c24;
	text-decoration: none;
	text-shadow: 0.3vmin 0.3vmin #ccff00;
}

h2	{
	padding: 2vmin;
}
h3	{
	padding: 0.5vmin;
}