body {
    font-family: "Inter", sans-serif;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 100px;
    
    width: 100dvw;
    min-height: 100dvh;
}
main h2 {
    color: #565757;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
main .logo {
    display: flex;
    justify-content: center;
}
main .logo img {
    width: calc(100% - 60px);
    max-width: 850px;
    height: auto;

    -o-object-fit: contain;
    object-fit: contain;
}
main .links {
    width: 100%;
    max-width: 850px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    
    padding: 0;
    margin: 0;
    list-style: none;
}
main .links .link a {
    display: flex;
    align-items: center;
    gap: 20px;
    
    color: #565757;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;

    padding: 10px 15px;
    border-radius: 10px;
}
main .links .link a:hover {
    background-color: #f2f4f8;
}
main .links .link svg {
    display: block;
    fill: #E30016;
    width: 30px;
    height: 30px;
}

@media (max-width: 992px) {
    main .links {
        justify-content: center;
    }
    main .links .link {
        display: block;
        width: 100%;
        padding: 0 30px;
    }
    main .links .link a {
        justify-content: center;
        padding: 20px;
        background-color: #f2f4f8;
        border-radius: 10px;
    }
}