@charset "utf-8";
/* CSS Document */


body {
	background: #EEEEEE;
}

.container {
	position: relative;
	margin: 0 auto;
	padding: 0 1rem;
	max-width: 1200px;
}

.logocontainer {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 20px;
}

.grid {
    justify-content: center;
}

.logo img {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: auto;
}

.responsive-image {
	max-width: 100%;
}

.cell {
    padding:10px;
}

.cell img {
	display: block;
	margin: auto;
}

.cell p {
	display: block;
	color: red;
	padding: 20px;
	font-family: "Roboto";
	font-size: 20px;
	line-height: 24px;
	background: #FFD100;
	letter-spacing: .25px;
}

.cell a {
    color:blue;
}

#animal-rave:hover {
    outline-style: solid;
    outline-width: 5px;
    outline-color: red;
}


/*media queries*/

@media screen and (min-width: 1024px) {
	.grid {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		align-items: center;
	}
	.cell {
		width: 50%;
	}
}

@media screen and (min-width: 1200px) {
	.cell {
		width: calc(100% / 3);
	}
}

/*photo grid margins*/

.cell {
	/*margin: 1rem;*/
}

@media screen and (min-width: 1024px) {
  .cell {
    width: calc(50% - 2rem);
  }
}

@media screen and (min-width: 1200px) {
  .cell {
    width: calc(33.3333% - 2rem);
  }
}