/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    /*1px lines spaced 40px apart with 5% opacity */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #ffffff;
    font-family: 'Terminus Bold', 'Courier New', monospace; /* Fallback to monospace */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.terminal-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.username {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.clock-display {
    font-size: 12px;
    color: #888888;
    border: 1px dashed #333333; /* The dashed box */
    padding: 4px 8px;
    letter-spacing: 1px;
}

.links a {
    font-size: 12px;
    color: #5555ff; /* Classic terminal blue link */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.links a:hover {
    border-color: #5555ff;
}

.links {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    gap: 5px;              
}