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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-image: url('background.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    font-family: 'IBM Plex Mono', monospace;
}

.container {
    min-height: 100vh;
    padding: 40px;
}

.text-box {
    max-width: 520px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 32px;
    color: #e8e8e8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400;
    color: #d0d0d0;
}

p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #d0d0d0;
    text-decoration: none;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.email {
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
    color: #b8b8b8;
}

a {
    color: #7dd3fc;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #bae6fd;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .text-box {
        max-width: 100%;
        padding: 24px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 0.85rem;
    }
}

