@font-face {
    font-family: 'Mikrobe Variable';
    src: url('Mikrobe-Variable.ttf') format('truetype');
    font-display: swap;
}

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

body {
    background-color: #FFE9C7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
}

h1 {
    color: #1E6443;
    font-family: 'Mikrobe Variable', cursive;
    font-size: 2.5rem;
    margin-top: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #1E6443;
    transition: color 0.2s ease;
}

.socials a:hover {
    color: #79C153;
}

.socials svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
