@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&display=swap');

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center h1 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.center h1:hover {
    color: #fff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    cursor: default;
}
