body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url("TAMIS.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 36px;
    color: pink;
    text-shadow: 0 0 15px pink;
    animation: glow 2s infinite alternate;
}

p {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 1px;
    text-align: justify;
    color: white;
}

.heart {
    font-size: 18px;
    line-height: 18px;
    display: inline-block;
    text-align: left;
}

.click-hint {
    color: hotpink;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
}

@keyframes glow {
    from { text-shadow: 0 0 10px pink; }
    to { text-shadow: 0 0 25px hotpink; }
}
