/* Local font declarations */
@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/anton-v27-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/oswald-v57-latin-regular.woff2') format('woff2');
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-family: Impact, 'Arial Black', 'Arial Narrow Bold', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header - top left */
header {
    padding: 2rem;
}

header h1 {
    font-family: 'Anton', Impact, 'Arial Black', sans-serif;
    font-size: 28pt;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

/* Main content - centered */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: -5rem;
}

/* Logo - rectangular display with rounded corners */
.logo {
    width: 400px;
    height: auto;
    border-radius: 12px;
}

/* Contact text */
.contact {
    font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
    font-size: 16pt;
    letter-spacing: 0.5px;
}

/* Footer - bottom right */
footer {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
}

.copyright {
    font-family: 'Oswald', Impact, 'Arial Narrow', sans-serif;
    font-size: 11pt;
    color: #666666;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        width: 300px;
        height: 300px;
    }

    header h1 {
        font-size: 22pt;
    }

    .contact {
        font-size: 14pt;
    }

    footer {
        position: relative;
        text-align: center;
        right: auto;
        bottom: auto;
        padding: 2rem;
    }
}
