body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    overflow: hidden;
    cursor: url('hand_tool_spanners_screwdriver.png') 10 10, crosshair;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

.message {
    z-index: 2;
}

.message h1 {
    font-size: 58px;
}

.message p {
    font-size: 30px;
}

.screw-nut {
    width: 100px;
    height: 100px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

p {
    color: #666;
    font-size: 1.2em;
}
