
						   /* Initially hide all paragraphs except the first */
 span.hidden { display: none; }	

/* Button styles */
#toggle-btn-content {  
    padding: 5px 10px;
   border: none;
    cursor: pointer;
    margin: 10px 0;
	transition: background-color 0.3s ease;
	color:#152253 ;
}
						   
	#toggle-btn-content:hover {
    background-color: rgba(101, 119, 179, 1);
		color:#fff;
}

#toggle-btn-content:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

#toggle-btn-content i {
    margin-left: 5px;
}
