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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

h1 {
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: normal;
}

.links {
    margin: 40px 0;
}

.link-item {
    margin-bottom: 30px;
}

.link-item a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.link-item a:hover {
    background-color: #ffffff;
    color: #000000;
}

.link-description {
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 8px;
    font-style: italic;
}

.contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.contact a {
    color: #ffffff;
    text-decoration: underline;
}

.contact a:hover {
    opacity: 0.8;
}

.footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9em;
    opacity: 0.6;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }
    
    .link-item a {
        display: block;
        margin: 10px 0;
    }
}
