
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: #f0f0f0;
    color: #0f0f0f;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.top-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 24px;
    border-radius: 50%;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

p {
    font-size: 1.05rem;
    color: gray;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 48px;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-bottom: 40px;
}

.partner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    transition: transform 0.2s ease;
}

.partner a:hover {
    transform: translateY(-3px);
}

.partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

footer {
    color: grey;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
}