* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
    background: #FFF5E1;
    font-family: 'Trebuchet MS';
    color: #FFF5E1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.container {
    width: 300px;
    height: 400px;
    perspective: 1000px; /* 👈 allows 3D space for flipping */
}

.card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

/* 👇 Hover flip */
.container:hover .card {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 90%;
    height: 90%;
    backface-visibility: hidden;
    border-radius: 10px;
}

/* Front image setup */
.front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Back content */
.back {
    background-color: #7CA9A5;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.back h1{
    margin-bottom: 20px;
}


