@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #262626;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    display: flex;
    flex-direction: column;
}

ul li {
    list-style: none;
}

ul li a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

ul li a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    text-align: center;
    font-size: 3em;
    color: #f6d67d;
    opacity: 0;
    line-height: 100vh;
    transition: 0.5s;    
}

ul li:hover a::before {
    opacity: 1;
    
}

