@font-face {
    font-family: '3270';
    src: url('fonts/3270-Regular.woff2') format('woff2'),
         url('fonts/3270-Regular.woff') format('woff'),
         url('fonts/3270-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #eaedee;
    --text-color: #e0e0e0;
    --accent-color: #88c0d0;
    --secondary-color: #2e3440;
}

body {
    font-family: '3270', monospace;
    background-image: url('images/logo.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    background-position: center;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--bg-color);
    padding: 1.5rem;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

#hero {
    text-align: center;
}

#hero img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    max-width: 600px;
    margin: 0 auto;
}

area {
    cursor: pointer;
}

footer {
    background-color: var(--bg-color);
    text-align: center;
    padding: 1.5rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
    }
}