﻿body {
  
    cursor: url('/images/penis.png'), auto;
}

.content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1;
}

.heart {
    position: fixed;
    font-size: 100px;
    color: rgba(255, 0, 0, 0.2);
    z-index: -1;
    animation: pump 1s ease-in-out infinite;
}

@keyframes pump {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}
.body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0e6d2;
}

.wanted-poster {
    width: 300px;
    height: 420px;
    background-color: #d2b48c;
    border: 8px solid #8b4513;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    position: relative;
}

.wanted-text {
    font-family: 'Georgia', serif;
    font-size: 42px;
    color: #5d3a1a;
    margin: 10px 0 15px;
    letter-spacing: 2px;
    font-weight: bold;
}

.photo-frame {
    width: 250px;
    height: 250px;
    border: 5px solid #8b4513;
    background-color: #f5f5dc;
    margin-bottom: 20px;
}

.dead-or-alive {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    color: #5d3a1a;
    text-transform: uppercase;
    position: absolute;
    bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}