*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
	text-decoration: none;
}

body
{
	width:100vw;
	height:100vh;
	text-align: center;
	background:#fff;
}

#container
{
	width: 180px;
	height: 250px;
	position: absolute; /* or absolute */
	top: calc(50% - 125px);
	left: calc(50% - 90px);
	background:#fff;

	outline: 1px solid #707070;
	outline-offset: -6px;
	z-index: 1;
}

.Title
{
	position: relative;
	top: 55px;
	color: rgba(0,0,0,1);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: 'Hepta Slab', serif;
	font-size:18px;
}

.Link
{
	position: relative;
	top: 130px;
	line-height: 30px;
	color: rgba(0,0,0,1);
	letter-spacing: .05em;
	font-family: 'Cormorant Garamond', serif;
	font-size:14px;
}

.Background {
	position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
	z-index: -1;
}

.Background > div {
	position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  animation: slide 30s infinite;
  opacity: 0;
}
.Background > div:nth-child(2) {
  animation-delay: 15s;
}
@keyframes slide {
	0% {opacity: 0;}
  30% {opacity: 1;}
  50% {opacity: 1;}
  100% {opacity: 0;transform: scale(1.3);}
}
