body {
  background-image: url('york rose.png');
}

h1 {
  color: black;
  font-size:80px;
  text-decoration-line: underline;
}

h2 {
  color: black;
  font-size:40px;
  text-decoration-line: underline;
}

img {
  border: 10px solid black;
  border-radius: 5px;
}

img:hover {
	transform: scale(1.15);
	border-color: grey;
	transition: all 1s ease-in-out;
	border-width: 8px;
}

ul {
  list-style-type: none;
  width: 530px;
  padding: 0;
  overflow: hidden;
  background-color: black;
  border-radius: 10px;
 }

ul li {
  float: center;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: grey;
  transform: scale(1.5);
  transform-text: scale(5);
  transition: all 1s ease-in-out;
}