@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

body,
h1 {
  margin: 0;
  padding: 0;
  font-family: 'Dancing Script', cursive;
}
h1 {
  font-size: 3rem;
  text-align: center;
}
.title {
  font-size: 5rem;
}

.banner {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #c2a889;
}
a {
    text-decoration: none;
    color: #454545;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
}
a:hover {
    color: #070707;
}