@charset "utf-8";
/* CSS Document */
body {
    background: #1b1b1b;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

#game {
    position: relative;
    width: 400px;
    height: 250px;
}

.card {
    position: absolute;
    width: 120px;
    height: 160px;
    background: white;
    border-radius: 10px;
    border: 2px solid #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.card:hover {
    transform: scale(1.05);
}

