*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
	font-size: 62.5%;
	font-family: 'Catamaran', sans-serif;
}


a {
	text-decoration: none;
}
*:visited {
	color: #eee;
}
*:link {
	color: #eee;
}
body {
	box-sizing: border-box;
	background-color: #111;
}

h1 {
	text-align: center;
	font-size: 5rem;
}
.content {
  height: 100vh;

	color: white;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;

}
.container {
  width: 100vw;
	/* background-color: blue; */

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.container > div {
	font-family: 'Catamaran', sans-serif;
  color: #eee;
  margin: 2rem;
	cursor: pointer;
}
.location {
  font-size: 3.5rem;
  border: 0.4rem solid #555;
	background-color: #111;
  height: 11rem;
  width: 40rem;
  padding-top: 3rem;
  text-align: center;
  transition: all 0.3s;
	line-height: 1;
}
.location__nyc:hover {
  border-color: #fff;
	transform: scale(1.025);
	filter: drop-shadow(0 10px 1.5rem black);
}
.location__berlin:hover {
	border-color: #fff;
	transform: scale(1.025);
	filter: drop-shadow(0 10px 1.5rem black);
}
.location__berlin:hover > .descriptor__berlin {
  opacity: 1;
}


.descriptor__berlin {
  opacity: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s;
}



@media only screen and (max-width: 600px) {
	html {
		/* font-size: 56.25%; */
		font-size: 50%;

	}
	.location {
		/* width: 30rem; */
	}
}

@media only screen and (max-width: 470px) {
	html {
		/* font-size: 56.25%; */
		font-size: 35%;

	}
	.location {
		width: 30rem;



	}
}
