body {
    margin: 0;
    padding: 0;
    font-family: "Arial", Helvetica, sans-serif;
    min-height: 100vh; /* Ensures background covers full screen */
    display: flex;
    flex-direction: column;
    align-items: center;
}

i {
    font-size: 150px; /* Default size */
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s; /* Smooth icon hover */
}

h1 {
    text-align: center;
    font-size: 3rem;
    margin-top: 50px;
    padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem; /* Smaller text on mobile */
    }
    i {
        font-size: 100px; /* Smaller icon on mobile */
    }
}
