html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #1f4d25;
}

.container {
    max-width: 100%;
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: min(80vw, 500px);
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: -30px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icons a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    max-width: none;
    transition: filter 0.2s ease, opacity 0.2s ease;
    filter: brightness(0) saturate(100%) invert(79%);
}

.social-icons a:hover,
.social-icons a:focus-visible {
    transform: translateY(-3px);
}

.social-icons a:hover img,
.social-icons a:focus-visible img {
    filter: brightness(0) saturate(100%) invert(100%);
}

@media (max-width: 480px) {
    .logo {
        width: min(70vw, 320px);
    }

    .social-icons {
        margin-top: -20px;
        gap: 14px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
    }
}