body{
    background: #101010;
    font-family: 'Montserrat', sans-serif;
}

body > h1{
    text-align: center;
    margin: auto;
    color:#ffffff;
    animation: pulse 1.75s infinite ease-in-out;
    cursor: pointer;
}

@keyframes pulse {
    from{
        opacity: 0;
    }

    50%{
        opacity: 1;
    }

    to{
        opacity: 0;
    }
}