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

:root {
    /* Font sizes */
    h1: 48px

    /* Colors */
    --greenSpan: #556D60;
}

body {
    background-color: #ebfaeb;
}

span {
    color: var(--greenSpan);
    overflow: hidden;
}

span::before {
    content:"Web Dev Enthusiast 🌐";
    animation: animate infinite 5s;
}

@keyframes animate {
    50% {
        content: "Language Learner 📚"
    }
}