* {
    margin: 0; padding: 0;
}

body {
    font-family: verdana;
    background-color: #add5e6;
    color: #EEE;
    border: 5px solid  rgb(23, 23, 81);
    border-radius: 8px;
    padding: 20px;
    min-height: 300px;
}


h1 {
   text-align: center;
   font-family: "Caveat", cursive;
   font-size: 50px;
   text-shadow: 2px 2px 10px rgb(10, 10, 44);
}

p {
   padding: 5px;
   line-height: 1.5;
   padding-top: 40px;
   color: rgb(23, 23, 81);
}

.photoArray {
   display: flex;
   flex-flow: row wrap;
   justify-content: space-around;
   padding: 30px;
}

.photoArray figure {
   border: 3px solid rgb(23, 23, 81);
   flex: 0 0 auto;
   width: 200px; aspect-ratio: 1;
   background-size: cover;
}

.photoArray figure:nth-child(1) {
   background-image: url(../images/paulina1.jpg);
}

.photoArray figure:nth-child(2) {
   background-image: url(../images/paulina2.jpg);
}

nav {
    background-color: rgb(23, 23, 81);
    text-align: center; 
    font-weight: bold;
    padding: 20px;
    margin-top: 100px;  
    margin-bottom: 10px;
 }
 
  nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 14pt;
    padding-top: 10px;
 }
 nav a:hover {
    background-color: #EEE;
    color: #add5e6;
 }
 nav h2 {
    font-size: 1.75vw;
    line-height: .20;
    font-weight: lighter;
    padding-top: 10px;
 }

 footer {
   background-color: rgb(77, 77, 146);
   padding: 10px;
   font-size: 10px;
 }

