* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background: #000;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Navigation Container */
.nav-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Navigation Links */
.nav-item {
    color: #fff;
    text-decoration: underline;
    font-size: 20px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #ff1493;
}

/* Title in bottom left corner */
.title {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 3px;
}
