html{
	font-size: 10px;
}

body{
	font-size: 1.6rem;
}

h1{
	font-size: 4rem;
}

html, body, .container{
	height: 100%;
}

.btn {
  width: 140px;
  height: 45px;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #fff;
  background-color: #e2007a;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  }

.btn:hover {
  background-color: #e2007a;
  box-shadow: 0px 15px 20px rgba(226, 0, 122, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.img-responsive{
	max-width: 90%;
	height: auto;
}

.centered, .container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 600px) {
	body{
		font-size: 1.4rem;
	}

	.centered h1{
		font-size: 2rem;
	}
}