body{
    background-color: pink;
    font-family: Arial, Helvetica, sans-serif;
    padding: 25px;
}

div{
    text-align: center;
}

.progress{
    height: 15px;
    background-color: pink;
    position: relative;
}

.progress .progress-bar{
   position: absolute;
   height: 100%;
   background-color: #d61a1a;
   animation: progress-animation 6s;
}


@keyframes progress-animation{
    0% { width: 0%; }
    
    100% { width: 100%}
    
}

#div{
    color: black;
    text-decoration: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100px;
}

#div img{
    width: 150px;
}

#div p{
    font-size: 25px;
    font-family: cursive;
}