body {
  font-family: 'Poppins', sans-serif;
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.pinimg.com/736x/71/e8/75/71e8757dfa63cdfd3d107fa4f715ed48.jpg');
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 42px;
  margin-bottom: 40px;
  transition: 0.4s ease;
}

h1:hover {
  color: #cf9219;
  transform: scale(1.5);
}

h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 28px;
  color: #6181c2;
}

.art-image {
  width: 40%;
  max-width: 500px;
  border-radius: 15px;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.art-image:hover {
  transform: scale(1.25);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.floating-art {
  animation: float 0.5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.description {
  width: 75%;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.8;
}

.links {
  margin-top: 15px;
}

.links a {
  color: #fba8ff;
  text-decoration: none;
  transition: 0.25s ease;
}

.links a:hover {
  color: white;
}