:root {
    --white: #eee;
    --black: #141414;
    --color: #3333ff;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    padding: 1rem;
}

.link {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
}

.link span,
.link i {
    position: relative;
}

.link i {
    margin-left: 0.5em;
}

.link .color {
    width: 2em;
    height: 2em;
    border-radius: 2em;
    background-color: var(--color);
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: -0.65em;
}