#mainPage
{
    display: flex;
    flex-direction: column; 
    align-items: center;

    margin: auto;
    margin-top: 50px;

    max-width: 1500px;
}

.profile
{
    display: flex;
    align-items: flex-start;
    margin: 32px 0 32px 0;
}

.left-profile
{
    flex: 1;
}

.right-profile
{
    padding: 16px;
    margin-left: 8px;

    flex: 8;

    background-color: var(--white-color-2);
    border-radius: 4px;
}

.image-profile
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 49.9%;
}

.image-profile-border
{
    width: 160px;
    height: 160px;

    box-sizing: border-box;
    background-clip: border-box;
    border-radius: 49.9%;

    background-color: var(--black-color);
    
    margin-bottom: 8px;
    padding: 4px;
}

.socialAccounts-profile
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.socialAccounts-profile a
{
    border: 0;
    background-color: transparent;

    width: 48px;
    margin: 0 2px;

    box-sizing: border-box;
    cursor: pointer;
}

.socialAccounts-profile a:hover
{
    padding: 2px;
}

.socialAccounts-profile a:active
{
    padding: 0;
}

.socialAccounts-profile a img
{
    width: 100%;
}

.right-profile a
{
    color: var(--blue-1);
    font-weight: 1000;
    text-decoration: none;
}

.right-profile a:hover
{
    color: var(--blue-2);
}

footer
{
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    left: 0;
    bottom: 0;
}