body {
  color: white;
  font-family: "Raleway", sans-serif;
  text-align: center;
}

.intro {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba( 0, 4, 27,0.5);
}

.bgimg:not(p) {
  background-image: url('indexbg.jpg');
  background-position: center;
  min-height: 100%;
  background-repeat: repeat-x;
} 

.parent {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%)
}

img.clouds {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  
}

img.name {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img:hover, nav:hover { 
  animation: pulse 5s infinite;
  animation-timing-function: linear;   
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

nav {
  background-color: rgba(0, 8, 53,0.7);
  margin-top: 8%;
  width: 100%;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}

ul {
  list-style-type: none;
}

li {
  display: inline-block;
}

a {
  padding: 0 10px 0 10px;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #FFD700;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #FFD700;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #FFD700;
  background-color: transparent;
  text-decoration: underline;
}