body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #282c34;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

header {
    background-color: #20232a;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Space for fixed header */
    position: relative;
}

.home-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.background-code {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.code-line {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    white-space: nowrap;
    animation: move 10s linear infinite;
}

.welcome-text {
    position: relative;
    z-index: 1;
}

.welcome-text h1 {
    font-size: 2.5rem;
    animation: slideIn 2s ease;
}

.welcome-text p {
    font-size: 1.2rem;
    margin-top: 1rem;
    animation: fadeIn 2s ease 1s;
}

footer {
    background-color: #20232a;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    display: inline;
    margin-right: 10px;
}

.link-list a {
    color: white;
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh);
    }
}
