/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

html, body {
    display: grid;
    height: 100%;
    place-items: center;
    background: #414040;
}

.text {
    outline: none;
    font-size: 150px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5335cf, #de005e, #f66e48, #5335cf);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 10s linear infinite;
}

.me {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(135deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 10s linear infinite;
}

@keyframes animate {
    100%{
        background-position: 400%;
    }
}