@font-face {
    font-family: 'Eurostile';
    src: url('./font/eurostile.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    background-color: #000000;
    color: #f1f1f1;
    font-family: 'Eurostile', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased; 
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.logo {
    font-size: clamp(4rem, 15vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    margin-bottom: 0rem;
    line-height: 1;
}

.contact {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    /* font-style: italic; */
    letter-spacing: 0.04em;
    font-family: 'Times New Roman', Times, serif;
}

.contact a {
    color: #f1f1f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.contact a:hover {
    border-bottom: 1px solid white;
}

::selection {
    background-color: white;
    color: black;
    mix-blend-mode: difference;
}