/* CSS styles */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: cornsilk;
    color: brown;
    text-align: center;
}

.container {
    padding: 20px;
    background: bisque;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2rem;
    color: black;
}

.compliment {
    font-size: 1.5rem;
    margin-top: 50px;
    animation: pulse 1s infinite;
}
