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

body {
    font-family: 'Courier New', Courier, monospace;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
}

h1 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

h3 {
    font-size: 1rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.link-card {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.2s ease;
}

.link-card:hover {
    opacity: 0.7;
}

.image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #000;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h2 {
    font-size: 0.9rem;
    font-weight: normal;
    color: #000;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1rem;
        margin-bottom: 60px;
    }
    
    .links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 0.8rem;
        margin-bottom: 40px;
    }
    
    .links {
        gap: 30px;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    h2 {
        font-size: 0.7rem;
    }
}
