body {
   margin: 50px;
	 background-color: white;
}
h1 {
    color: blue;
    font-family: verdana;
    font-size: 100%;
}
#p01 {
    color: white;
}
p  {
    color: #c20000;
    font-family: courier;
    font-size: 130%;
		margin: 50px;
}
textarea  {
    color: red;
    font-family: courier;
    font-size: 130%;
		margin: 50px;
		background-color: #d9ffff; 
		width:80%;
}

button.accordion {
    background-color: #5f9ea0;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 150%;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color:grey; 
}

div.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
}

div.panel.show {
    display: block !important;
}

