@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    margin-left: 0;
}

body {
    font-family: "DM Sans", sans-serif;
    color: rgb(0, 39, 208);
    background-color: rgb(228, 233, 237);
    font-size: 16px;
    min-height: unset;
    height: unset;
}

a {
    color: unset;
}

.container-tight {
    max-width: 580px;
    padding-left: 0;
    padding-right: 0;
}

.wrapper {
    margin-top: 2.5rem;
}

h1 {
    font-size: 20px;
    letter-spacing: -.4px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0;
}

h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.profile-description {
    margin-top: 2px;
}

.links-container {
    margin-top: calc(2rem + 2px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link {
    border: 2px solid #fff;
    border-radius: 32px;
    background-color: #fff;
}

.link .inner {
    min-height: 64px;
    padding-left: 66px;
    padding-right: 66px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.link:hover {
    background-color: transparent;
    color: #fff;
}

.link .inner:hover {
    color: inherit;
}

.link .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}

.link .logo img {
    border-radius: 50%;
}

.link p {
    font-weight: 500;
    margin-bottom: 0
}