* {
  box-sizing: border-box;
}

nav {
    position: inline-block;
    text-align: center;
    font-family: Georgia;
    font-weight: bold;
    color: yellow;
    background-color: red;
    position: fixed;
    top: 0;  
    left: 0;
    right: 0;
    border: 5px solid blue;
    z-index: 1;
    

}

nav a {
    border: 3px solid blue;
    background-color: darkred;
    border-radius: 5px;
    color: yellow;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: Georgia;
    font-weight: bold;
}
nav a:hover {
    background-color: pink;
    color: yellow;
}

#title {
    text-align: center;
    font-family: Georgia;
    font-weight: bold;
    color: yellow;
    background-color: red;
    position: relative;
    top: 45px;  
    left: 0;
    right: 0;
    border: 5px solid blue;
    margin-left: -1%;
    margin-right: -1%;
}



body {
    background-color:cyan;
    text-align: center;
    font-family:Georgia; 
}




h1 {
    font-weight:bold;
}

h2 {
    font-weight:bold;
}

#intro {
  text-align: center;
  margin: 110px auto 20px;
  border: 5px solid black;
  width: 90%;
  border-radius: 10px;
  background-color: #f0f0f0;
  padding: 10px;
}

#about-Elvis {
  text-align: center;
  margin: 20px auto;
  border: 5px solid black;
  width: 90%;
  border-radius: 10px;
  background-color: #f0f0f0;
  padding: 10px;
}

#Elvis-pic {
    border: 10px solid brown;
    border-radius: 10px;
    margin: auto;
    width: 90%;
    height: auto;
}

#about-El-Camino { 
    text-align: center;
  margin: 20px auto;
  border: 5px solid black;
  width: 90%;
  border-radius: 10px;
  background-color: #f0f0f0;
  padding: 10px;
}

#El-Camino-pic {
    border: 10px solid brown;
    border-radius: 10px;
    margin: auto;
    width: 90%;
    height: auto;
}

/* button config */

.p-button {
    margin: 20px auto 0px;
    color: red;
    background-color: red;
    width: 100px;
    border: 3px solid black;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.p-button:hover {
    background-color: pink;
}