* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #295243f6;
}
div {
  position: relative;
  width: 40vw;
  height: 80vh;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 2rem;
  text-align: center;
  backdrop-filter: blur(18px);
  box-shadow: rgba(0, 0, 0, 0.22) 0px 18px 45px;
  border-radius: 2rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(-14px);
  }
}
div center img {
  width: 40%;
}
div h4 {
  font-weight: 800;
  color: #fefcf8;
  text-shadow: 0 1px 5px #18392b;
}
div h4 span {
  color: #c2a878;
}
div p {
  color: #fefcf8;
  text-shadow: 0 1px 5px #e3d5b8;
}
div a button {
  padding: 0.5rem 0.4rem;
  border: none;
  border-radius: 1rem;
  background-color: #c2a878;
  color: #fefcf8;
  font-weight: 900;
  cursor: pointer;
  transition: all .7s ease;
}
div a button:hover{
    transform: translateY(-10px);
    box-shadow: 0 -0.1rem 1rem #c2a878;
}
@media (max-width: 800px) {
  div {
    width: 80vw;
  }
}
