/* includes alternating gray and white with on-hover color */

.mystyle {
    font-size: 11pt; 
    font-family: Arial;
    border-collapse: collapse; 
    border: 1px solid silver;

}

.mystyle td, th {
    padding: 5px;
    width: 300px;
}

.mystyle tr:nth-child(even) {
    background: #E0E0E0;
}

.mystyle tr:hover {
    background: silver;
    cursor: pointer;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
}

.flex-container {
	display: flex;
	background-color: Blue
}

.flex-container > div {
	background-color: #f1f1f1;
	margin: 10px;
	padding: 20px;
}

img {
	max-width: 100%;
	max-height: 100%;
}


