@font-face {
    font-family: 'ConsolasLXGW';
    src: url('fonts/consolaslxgw.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'ConsolasLXGW', 'Consolas', 'Monaco', 'Courier New', monospace;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.greeting {
    margin-bottom: 60px;
    color: white;
}

.greeting h1 {
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.date {
    font-size: 1.5rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

.bookmarks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 20px 0;
    justify-items: center;
}

.bookmark-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bookmark-link:hover {
    color: white;
    text-decoration: none;
}

.lan {
    font-size: 0.5em;
    opacity: 0.6;
    vertical-align: super;
}

/* Responsive design */
@media (max-width: 768px) {
    .greeting h1 {
        font-size: 3rem;
    }

    .date {
        font-size: 1.2rem;
    }

    .bookmark-link {
        font-size: 1.35rem;
    }

    .bookmarks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
