@charset "utf-8";
/* CSS foor nav1 */

	a {
		text-decoration: underline;
		text-decoration-color: red;
	}
	
	a:visited {
		color:orange;
	}
	a:hover {
		color:green;
	}
	table {
		border: 3px solid red;
		border-collapse: collapse;
	}
	th {
		background-image: url("images/yes_man_face.png");
		color: white;
		padding: 10px;
		font-size: 22px;
	}
	td {
		border: 2px solid green;
		width: 10%;
		text-align: center;
		padding: 8px;
		font-size: 18px;
	}
	tr:nth-of-type(even) {
		background-color: #5F8D6A;
	}
	tr:nth-of-type(odd) {
		background-color: #A1D4A8;
	}
	table {
		border-collapse: collapse;
	}
	table.center {
		margin-left: auto;
		margin-right: auto;
	}
	nav td {
		background-color: #D10C0C;
		width: 100px;
		height: 40px;
		font-size: 24px;
		color: green;
		text-align: center;
		border: 1px solid black;
		border-radius: 15px;
	}
	nav tr{
		margin: 30px auto;
	}
	tr a {
		color: yellow;
		text-decoration: none;
	}
	ul.nav1{
	margin-left: 30px;
	}
	li.nav1{
		width: 100px;
		height: 40px;
		background-attachment: #D10C0C;
		list-style-type: none;
		font-size: 24px;
		color: black;
		text-align: center;
		border: 2px solid yellow;
	
	}
	li a {
		color: black;
		text-decoration: none;
	}
	li a:hover {
		color:blue
	}
.animated-grid {
  height: 85vh;
  margin-bottom: 200px;

  display: grid;
  gap: 1rem;

  /* Explicit grid */
  grid-template-areas:
    'a  b  c  d'
    'l  🌟 🌟 e'
    'k  🌟 🌟 f'
    'j  i  h  g';

  grid-template-rows: repeat(4, 25%);
  grid-template-columns: 240px auto auto 240px;

  --stagger-delay: 100ms;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: scale(0.3);
    filter: hue-rotate(180deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: hue-rotate(0deg);
  }
}

.card {
  background-color: rgb(36, 243, 147);
  animation: cardEntrance 700ms ease-out;
  animation-fill-mode: backwards;
}

.card:nth-child(1) {
  grid-area: a;
  background-image: url("images/Atx_skin_powerarmor_skin_hare_l.png");
  background-size: cover;
  animation-delay: calc(1 * var(--stagger-delay));
}
.card:nth-child(2) {
  grid-area: b;
  background-image: url("images/FOWW-FH-Blueprint.jpg");
  background-size: cover;
  animation-delay: calc(2 * var(--stagger-delay));
}
.card:nth-child(3) {
  grid-area: c;
  background-image: url("images/Frank_Horrigan.png");
  background-size: cover;
  animation-delay: calc(3 * var(--stagger-delay));
}
.card:nth-child(4) {
  grid-area: d;
  background-image: url("images/Atx_skin_powerarmor_model_equalizer_l.png");
  background-size: cover;
  animation-delay: calc(4 * var(--stagger-delay));
}
.card:nth-child(5) {
  grid-area: e;
  background-image: url("images/Atx_skin_powerarmor_paint_enclave_l.png");
  background-size: cover;
  animation-delay: calc(5 * var(--stagger-delay));
}
.card:nth-child(6) {
  grid-area: f;
  background-image: url("images/Atx_skin_powerarmor_paint_hellfire_regulator_l.png");
  background-size: cover;
  animation-delay: calc(6 * var(--stagger-delay));
}
.card:nth-child(7) {
  grid-area: g;
  background-image: url("images/Atx_skin_powerarmor_paint_rrranger_l.png");
  background-size: cover;
  animation-delay: calc(7 * var(--stagger-delay));
}
.card:nth-child(8) {
  grid-area: h;
  background-image: url("images/Benny_intro.jpg");
  background-size: cover;
  animation-delay: calc(8 * var(--stagger-delay));
}
.card:nth-child(9) {
  grid-area: i;
  background-image: url("images/Bosprime.jpg");
  background-size: cover;
  animation-delay: calc(9 * var(--stagger-delay));
}
.card:nth-child(10) {
  grid-area: j;
  background-image: url("images/Atx_skin_powerarmor_paint_x01_atomicoutcast_l.png");
  background-size: cover;
  animation-delay: calc(10 * var(--stagger-delay));
}
.card:nth-child(11) {
  grid-area: k;
  background-image: url("images/Atx_skin_powerarmor_paint_santasslay_l.png");
  background-size: cover;
  animation-delay: calc(11 * var(--stagger-delay));
}
.card:nth-child(12) {
  grid-area: l;
  background-image: url("images/Score_s4_skin_powerarmor_paint_commissionerchaos_l.png");
  background-size: cover;
  animation-delay: calc(12 * var(--stagger-delay));
}
.card:last-child {
  grid-area: 🌟;
  background-image: url("images/Black_Mountain_end_slide_01.png");
  background-size: cover;
  animation-delay: calc(13 * var(--stagger-delay));
}
	}

	input {
		font-size: 14px;
		font-family: Helvetica, sans-serif;
	}

	body {
		background-color: #BBB;
		font-family: Helvetica, sans-serif;
		padding-bottom: 100px;
	}

	h2, h3 {
		margin: 0 0 .75em 0;
	}

	/* first example */
	.container {
		max-width: 750px;
		margin: 20px auto 0 auto;
		padding: 30px;
		background-color: #FFF;
	}

	.form-row {
		padding: 10px 0;
		display: flex;
	}

	.form-row label {
		padding-right: 10px;
	}

	.form-row input {
		flex: 1;
	}

	/* second example */
	.column-layout {
		max-width: 1300px;
		background-color: #FFF;
		margin: 40px auto 0 auto;
		line-height: 1.65;
		padding: 20px 50px;
		display: flex;
	}

	.main-column {
		flex: 3;
		order: 2;
	}

	.sidebar-one {
		flex: 1;
		order: 1;
	}

	.sidebar-two {
		flex: 1;
		order: 3;
	}

	/* third example */
	.call-outs-container {
		max-width: 1400px;
		margin: 40px auto 0 auto;
	}

	.call-out {
		padding: 20px;
		box-sizing: border-box;
		margin-bottom: 20px;
		flex-basis: 30%;
	}

	@media (min-width: 900px) {
	.call-outs-container {
			display: flex;
			justify-content: space-between;
		}
	}

	.call-out:nth-child(1) {background-color: #c0dbe2;}
	.call-out:nth-child(2) {background-color: #cdf1c3;}
	.call-out:nth-child(3) {background-color: #ccb9da;}

	/* fourth example */
	.fixed-size-container {
		max-width: 1400px;
		margin: 40px auto 0 auto;
		background-image: url("images/F2_Horrigan_Backdrop.png");
		background-size: fill;
		padding: 30px 0;
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-wrap: wrap;
	}

	.fixed-size-1 {
		width: 150px;
		height: 200px;
		background-image: url("images/frank_horrigan_Game.jpg");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-2 {
		width: 150px;
		height: 200px;
		background-image: url("images/t51-pose-3.jpg");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-3 {
		width: 150px;
		height: 200px;
		background-image: url("images/Enclave_Hellfire_armor.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-4 {
		width: 150px;
		height: 200px;
		background-image: url("images/Enclave_shocktrooper_armor.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-5 {
		width: 150px;
		height: 200px;
		background-image: url("images/t45-pose-3.jpg");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	/* fifth example */
	.banner {
		height: 700px;
		max-width: 700px;
		margin: 40px auto 40px auto;
		background-image: url("images/EliteRiotGear.png");
		background-size: cover;
		display: flex;
	}

	.center-me {
		color: #FFF;
		font-size: 50px;
		margin: auto;
	}

	/* sixth example */
	.equal-height-container {
		max-width: 900px;
		margin: 0 auto;
		display: flex;
	}

	.first {
		background-color: #FFF;
		padding: 20px;
		flex: 1;
	}

	.second {
		max-width: 700px;
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.second-a {
		background-image: url("images/FONV-Lonesome-Road-Screenshot-04B.jpg");
		background-size: cover;
		flex: 1;
	}

	.second-b {
		background-image: url("images/FNVLR_Red_Glare_poster.png");
		background-size: fit;
		flex: 1;
	}
		/* seventh example */
	.fixed-size-container-2 {
		max-width: 1400px;
		margin: 40px auto 0 auto;
		background-image: url("images/F2_Horrigan_Backdrop.png");
		background-size: fill;
		padding: 30px 0;
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-wrap: wrap;
	}

	.fixed-size-6 {
		width: 200px;
		height: 200px;
		background-image: url("images/LR_riot_gear_helmet.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-7 {
		width: 200px;
		height: 200px;
		background-image: url("images/Marked_beast_helmet.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-8 {
		width: 200px;
		height: 200px;
		background-image: url("images/Marked_beast_tribal_helmet.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-9 {
		width: 200px;
		height: 200px;
		background-image: url("images/Marked_beast_face_helmet.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-10 {
		width: 200px;
		height: 200px;
		background-image: url("images/Advanced_riot_gear_helmet.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	/* eigth example */
	.banner-2 {
		height: 700px;
		max-width: 900px;
		margin: 40px auto 40px auto;
		background-image: url("images/FONVEagleFlagPole.PNG.png");
		background-size: cover;
		display: flex;
	}

	.center-me {
		color: #FFF;
		font-size: 50px;
		margin: auto;
	}
		/* ninth example */
	.fixed-size-container-3 {
		max-width: 1400px;
		margin: 40px auto 0 auto;
		background-image: url("images/F2_Horrigan_Backdrop.png");
		background-size: fill;
		padding: 30px 0;
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-wrap: wrap;
	}

	.fixed-size-11 {
		width: 200px;
		height: 200px;
		background-image: url("images/Bowie_knife_icon.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-12 {
		width: 200px;
		height: 200px;
		background-image: url("images/Flare_gun.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-13 {
		width: 200px;
		height: 200px;
		background-image: url("images/Flash_bang.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-14 {
		width: 200px;
		height: 200px;
		background-image: url("images/Deathclaw_gauntlet.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
	.fixed-size-15 {
		width: 200px;
		height: 200px;
		background-image: url("images/Satchel_charge.png");
		background-size: cover;
		line-height: 100px;
		text-align: center;
		font-weight: bold;
		font-size: 60px;
		margin-bottom: 20px;
	}
		/* tenth example */
	.equal-height-container-2 {
		max-width: 1000px;
		max-height: 1000px;
		margin: 0 auto;
		display: flex;
	}

	.third {
		background-color: #FFF;
		padding: 20px;
		flex: 1;
	}

	.fourth {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.second-c {
		background-image: url("images/Rocket_canister.png");
		background-size: cover;
		flex: 1;
	}

	.second-d {
		background-image: url("images/Rockets_Red_Glare.png");
		background-size: cover;
		flex: 1;
	}
