@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #2f363e;
    background-image: url("../images/logo.png");
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: top right;
}

h1 {
    font-size: 3em;
    padding: 20px 0 50px;
    color: #00ff0a;
    text-shadow: 0 0 10px #00ff0a;
}

ul {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Nouveau code */
    gap: 30px;
}

ul li {
    position: relative;
    list-style: none;
    width: 100%;
    /* Nouveau code */
}

ul li a {
    position: relative;
    font-size: 3em;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

ul li a::before {
    content: attr(data-text);
    position: absolute;
    color: var(--clr);
    width: 0;
    overflow: hidden;
    transition: 1s;
    border-right: 8px solid var(--clr);
    -webkit-text-stroke: 1px var(--clr);
}

ul li a:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 25px var(--clr));
}