@font-face {
    font-family: 'Metropolis';
    src: url('fonts/metropolis/Metropolis-Black.woff2') format('woff2'),
         url('fonts/metropolis/Metropolis-Black.woff') format('woff'),
         url('fonts/metropolis/Metropolis-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    background-color: #151415;
    font-family: 'Metropolis', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.logo {
    margin-bottom: 2rem;
}

#logo {
    width: 300px;
}

.title {
    color: white;
    font-family: 'Metropolis', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-family: 'Metropolis', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: white;
    color: #151415;
}

.email-icon {
    width: 20px;
    height: 20px;
}