/* Style for the entire page */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    color: #D3D3D3;
}

/* Welcome message styling */
.welcome-message {
    font-size: 6vw;
    /* Adjust for 60% screen width coverage */
    font-weight: bold;
    color: gray;
    /* Main text color */
    text-align: center;

    /* Applying gradient overlay on the outline */
    position: relative;
    background: linear-gradient(to bottom, transparent 50%, rgb(255, 208, 0), rgb(255, 0, 0));
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    /* WebKit-specific for compatibility */
    -webkit-text-fill-color: transparent;

    /* Outline stroke for WebKit-based browsers */
    /*-webkit-text-stroke: 1px rgb(59, 59, 59); */

    /* Optional shadow for subtle depth */
    text-shadow: 0px 1px 0px rgba(37, 39, 31, 0.856);
}

/* Remove underline for specific link */
.link-no-underline {
    text-decoration: none;
    color: inherit;
    /* Makes the link color the same as the surrounding text */
}