* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(img/shanghai.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

main {
  display: flex;
  flex-direction: column;
  color: whitesmoke;
  margin: auto;
  text-align: center;
}

h1 {
  margin-bottom: 1.3rem;
  text-shadow: 2px 2px 9px rgba(255, 255, 255, 0.6);
}

main p {
  margin-bottom: 0.5rem;
  text-shadow: -2px -1px 2px rgba(0, 0, 0, 1);
}

main p:nth-child(4) {
  background-color: rgb(123, 128, 133);
  max-width: fit-content;
  align-self: center;
}

/* bagian footer */
a {
  text-decoration: none;
  font-weight: bold;
  color: whitesmoke;
}

.heart {
  color: red;
  font-size: 1.5rem;
}

svg {
  margin-bottom: -5px;
}

footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

footer p {
  display: block;
  width: 100vw;
  padding: 0.5rem;
  text-align: center;
  background-color: black;
  color: azure;
}
