body {
    height: 100vh;
    display: grid;
    place-items: center;
    background-color: rgb(246, 246, 246);
}

a {
    font-family: 'forma-djr-text';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "salt";
    -webkit-font-feature-settings: "salt";
    font-feature-settings: "salt";
    letter-spacing: -0.02em;
    font-size: clamp(var(--min), var(--val), var(--max));
    --min: 1.5em;
    --val: 5vw;
    --max: 3em;
    color: #FF4426;
    text-decoration: none;
}

a:hover {
    color: rgb(17, 17, 17)
}

a::before {
    content: '📫 ';
    /* font-size: smaller; */
}

a:hover::before {
    content: '📪 ';
}