body {
 background-color: rgb(35, 32, 25);
 color:aliceblue;
 padding:40px;
}
h1{
    text-decoration: underline dotted 3px rgb(143, 151, 158);
}
nav{
    outline: dotted aliceblue 3px;
    background-color: black;
    padding:15px;
    margin-bottom: 20px;
}
.featured {
    border: 3px aliceblue solid;
    background-color: black;
    max-width: 500px;
    overflow: hidden;
}
.gallery-box{
    border: 3px aliceblue solid;
    background-color: black;
    overflow: hidden;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;

    padding:20px;
    max-width: 60%;

}
.responsive{
    max-width: 100%;
    height: auto;
}

a {
    background-color: black;
    padding: 3px;
    border:dotted aliceblue 3px;
}

 /* unvisited link */
 a:link {
    color: rgb(73, 116, 235);
  }
    /* visited link */
    a:visited {
        color: rgb(187, 126, 251);
      }
      
  /* mouse over link */
  a:hover {
    color: rgb(97, 118, 255);
  }
  
  /* selected link */
  a:active {
    color: rgb(208, 97, 241);
  } 
 