/* Import Determination Mono font */
@import url('../webfonts/stylesheet.css');

body {
    background-color: #000;
    color: #fff;
    font-family: 'Undertale Papyrus', monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#game-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

#buttons {
    display: none;
    gap: 20px;
}

button {
    font-size: 1.5rem;
    padding: 10px 20px;
    border: 2px solid white;
    /* White border */
    border-radius: 0;
    /* Square corners */
    background-color: black;
    /* Black background */
    color: white;
    /* White text */
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-family: 'Determination Mono', monospace;
    text-transform: uppercase;
}

button:hover {
    background-color: white;
    /* Invert colors on hover */
    color: black;
}

#yes-button {
    border-color: #4CAF50;
    /* Green border for "Yes" */
    color: #4CAF50;
}

#yes-button:hover {
    background-color: #4CAF50;
    /* Green background on hover */
    color: black;
}

#no-button {
    border-color: #f44336;
    /* Red border for "No" */
    color: #f44336;
}

#no-button:hover {
    background-color: #f44336;
    /* Red background on hover */
    color: black;
}

.heart {
    display: none;
    margin-top: 20px;
    font-size: 5rem;
    color: red;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

#character {
    width: 110px;
    height: 164px;
    background-image: url('../images/faces.jpg');
    background-position-x: 638px;
    background-position-y: 4px;
}