/* * {
    border: dodgerblue 2px dotted;
} */

main {
  background-color: grey;
  z-index: 0;
  height: 200px;
  display: flex;
  flex-direction: column;
  opacity: 80%;
  border-radius: 5%;
  padding: 50px;
}

h1 {
  padding: 5px;
}

#name-intro {
  padding: 5px;
}

#full-name {
  padding-left: 5px;
  padding-bottom: 10px;
}

html {
  background: url(images/paolo-candelo-no1nIXWTekU-unsplash.jpg) no-repeat
    center fixed;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 500px;
  margin: auto;
}

.footer {
  flex-shrink: 0;
  border-radius: 5%;
  margin-top: 32px;
  background-color: white;
}
.button {
  border-radius: 8px;
  background-color: yellow;
  transition-duration: 0.4s;

}
.button:hover {
  background-color: dodgerblue; /* Green */
  color: white;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
