body {
    margin: 0;
    padding: 0;
}
.title{
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
}
.description{
    text-align: center;
    font-size: 1.25rem;
    margin:0;
}

.animate {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    animation: blink 300ms ease infinite;
}
@keyframes blink {
    from{
        color:black;
    }
    to{
        color:red;
    }
}