body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #FFF0F5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    transition: background-color 0.5s, color 0.5s;
}

.container {
    text-align: center;
    background: #FFB6C1;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
    transition: background-color 0.5s, box-shadow 0.5s;
}

h1, h2 {
    color: #FF69B4;
    margin: 10px 0;
    transition: color 0.5s;
}

button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #FFC0CB, #FF69B4);
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

button:hover {
    transform: scale(1.1);
}

button:active {
    transform: scale(1.05);
}

/* Horrific ambiance */
.horrific-body {
    background-color: #000;
    color: #FFF;
}

.horrific-container {
    background: #333;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.7);
}

.horrific-h1, .horrific-h2 {
    color: #FFF;
}
