/* CSS Document */
/* for all devices */
*{
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
	text-decoration: none;
}
div.info{
    text-align: center;
    padding: 50px 10px;
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    
}
h1{
    font-size: 28px;
    color: green;
}
h1.error{
    font-size: 28px;
    color: red;
  
}
span{
    font-size: 26px;
}
span.name{
    font-weight: bold ;
    margin: 15px 0 5px 0;
    
}
span em{
    color: green;
    font-style: normal;
    font-weight: bold;
}