body{
    margin: 0px;
    padding: 0px;
}
 

/*FORMAT*/
.Entry{

    display: block;
    margin-top: 20px;
   
   
}


/*TEXT*/

.title{
    font-size: 10vw;
   text-align: center; 
}
.number{
    margin-left: 20px;
}
.text{

    padding: 15px 100px 15px 100px ;
    text-align: center;
}

p{
    line-height: 30px;
    text-align: center;
}


/* Mobile Vertical and Smaller */
@media screen and (max-width: 675px ) {

    /*FORMAT*/
.Entry{

    display: block;
    width: 100vw;
    margin-top: 20px;
   
   
}


/*TEXT*/

.title{
    display: flex;
    font-size: 8vw;
   text-align: center; 
   transition: 300ms;
}

.title:hover{

    color: red;
    transition: 200ms;
}

.text{

    padding: 15px 50px 15px 50px ;
    text-align: center;
 
}

p{
    line-height: 30px;
    text-align: center;
}



}