/*Add your CSS here*/
* { margin: 0; 
   padding: 0;
   box-sizing: border-box;
   font-family: sans-serif;
   font-size: 16px;
   color: #000000;
}

h1{
  font-size: 35px;
  text-align: center;
}

h2{
  color: pink;
  text-align: center;
}

/* Images & Figures */
Img{
   width: 100%;
   height: auto;
}

a:link {
   color: powderblue;
}

a:visited {
   color: pink;
}

a:hover {
   color: palevioletred;
}

a:active {
   color: Khaki;
}

figure {
   text-align: center;
}

.caption {
   color: khaki;
}

p {
    text-align: center;
}

/* Footer */
footer a:hover {
text-decoration: none;
}

/*No touch*/
h1, h2, nav, .cap, footer {
  text-align: center;
}

nav {
  padding: 1rem 0 2rem 0;
}

figure, h2, footer {
  padding-bottom: 1rem;
}

section {
  padding: 2rem 0;
}

p{
  margin: 0 10vw;
}
