
.container {
	padding: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f34f5a;
  width: 100%;
  min-height: calc(100vh - 2rem);
	margin:15px 0;
  }
nav {
  margin: 0 auto;
  }
nav:hover a {
  opacity: 0.3;
  }
nav a {
  color: #ffca52;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  }
nav a:hover {
  color: #fff;
  opacity: 1;
  transform: translateX(0.5rem);
  }
