html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1a1a2e, #000);
  color: white;
  overflow: hidden;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  letter-spacing: 2px;
}

.card-wrapper {
  width: 40vh;
  height: 60vh;
    perspective: 1000px;
    display: inline-block;
}

#tilt {
  width: 100%;
  height: 100%;
  transition: transform 0.15s ease;
  transform-style: preserve-3d;
}

#card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.card-face {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.card-back {
  transform: rotateY(180deg);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tagline {
  margin-top: 20px;
  opacity: 0.8;
  font-size: 1.1rem;
}

a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border-radius: 50%;
	background-color: #2d59ef;
	width: 2rem;
	height: 2rem;
}

