@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Code:wght@300..700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    font-family: "Fira Code", monospace;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
}

.blog-container {
    max-width: 900px;
    margin: auto;
}

.w3-tag,
.span-index {
    background-color: rgb(163, 158, 158);
    color: #000;
    padding: 0.2em 0.5em;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeline {
    max-width: 700px;
    margin-top: 30px;
    padding: 40px 20px;
    white-space: pre;
    font-size: 14px;
    line-height: 1.6;
}


.t-year {
    color: #ff0;
    text-shadow: 0 0 2px #ff0, 0 0 4px #ff0;
}

.t-company {
    color: #fff;
    text-shadow: 0 0 1px currentColor;
}

.t-vul {
    color: #ccc;
}

.timeline a {
    color: #ddd;
    text-decoration: none;
    text-shadow: 0 0 10px #ddd, 0 0 5px #ddd;
}

.timeline a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .timeline {
        font-size: 0.9rem;
    }

    .hero-section {
        min-height: auto;
        background-image: none;
    }

    .hero-section header {
        display: none;
    }
}

footer {
    margin-top: auto !important;
}
