@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
body {
  background:#6FB2FF url("../images/clouds.jpg") repeat-x  center top;
  animation: animatedBackground 50s ease-in-out infinite alternate;
}
.wall {
	background: url("../images/wall-new.jpg") repeat-x center bottom;
	width:100%;
  height:100vh;
}
.door {
  background: url("../images/door-new.jpg") no-repeat center bottom;
  height: 544px;
  width: 351px;
}
.wall .door .nav .nav-item {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  margin: 0;
  padding: 5px;
  flex: 0 1 30%;
}
a {
  text-decoration: none;
  color: #cbbcb5;
}
