@font-face {
    font-family: "Blender Pro";
    src: url("fonts/BlenderPro-Bold.woff2") format("woff2"), url("fonts/BlenderPro-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: auto;
}

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

body {
    font-family: "Blender Pro", sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
    margin-bottom: 60px;
}

h1 {
    font-family: "Blender Pro", sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #000;
}

.subtitle {
    font-family: "Blender Pro", sans-serif;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: #000;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logos a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logos img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .logos {
        flex-direction: column;
        gap: 30px;
    }

    .logos img {
        max-width: 120px;
    }

    .subtitle {
        font-size: 24px;
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    text-align: center;
    font-size: 9px;
    color: #888;
    line-height: 1.4;
}
