body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    overflow: hidden;
}

.text {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE/Edge */
}