/* Change these colours to match the brand */
.button, .button.alt:hover {
	background-color: #C8161D;
}


.top {
	background-color: #9e9e9e;
}

/* Set this value to the maximum width the logo should be displayed at */
.logo {
	max-width: 400px;
}

/* You probably won't need to change the stuff below this line */

body {
	height: 100vh;
	background-image: url('squared_metal_2X.png');
	//background-size: 300px auto;
	font-family: 'Roboto', sans-serif;
	color: #000000;
	position: relative;
	font-size: 20px;
	margin: 0;
	display: flex;
	padding: 0;
	font-weight: 400;
	min-height: 700px;
	text-align: center;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.top {
	padding: 20px 0;
	width: 100%;
}

.top p {
	margin: 0;
	text-transform: uppercase;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 1px;
}

.content-container {
	max-width: 600px;
	margin: auto;
}

.logo {
	display: block;
	margin: auto;
	width: 60%;
}

.content-container p {
	margin: 40px 20px;
}

.buttons, .top, .bottom, .content-container p {
	opacity: 0;
}

.button {
	border-radius: 40px;
	display: inline-block;
	padding: 20px 30px;
	text-decoration: none;
	color: #ffffff;
	width: 200px;
	font-weight: 500;
	transition: all ease 300ms;
	letter-spacing: 1px;
}

.button:hover {
	background-color: #333132;
}

.button.alt {
	background-color: #ffffff;
}

.button.alt:hover {
	color: #ffffff;
}

.bottom {
	position: absolute;
	bottom: 60px;
	width: 100%;
	left: 0;
	right: 0;
	top: auto;
	text-align: center;
}

.bottom .phone-number {
	font-size: 40px;
	margin: 0;
}

.bottom .address {
	margin-top: 15px;
	margin-bottom: 0;
}

.bottom .address a {
	color: #ffffff;
	text-decoration: none;
}

.show-on-phone {
	display: none;
}

@keyframes fadeIn
  to { 
     opacity: 1; }


@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.fade-in {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

.fade-in-delay {
  animation: fadeIn ease 2s 1s;
  -webkit-animation: fadeIn ease 2s 1s;
  -moz-animation: fadeIn ease 2s 1s;
  -o-animation: fadeIn ease 2s 1s;
  -ms-animation: fadeIn ease 2s 1s;
  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
}


@media (max-width: 768px) {
	body {
		font-size: 14px;
		min-height: 600px;
	}

	.content-container {
		//margin-top: 20px;
	}

	.button {
		width: 170px;
		display: block;
		margin: 15px auto;
		padding: 15px 20px;
	}

	.bottom {
		bottom: 20px;
	}

	.show-on-phone {
		display: block;
	}

	.hide-on-phone {
		display: none;
	}
}