	* {
		box-sizing: border-box;
	} 
	body {
		background: #c9d6d4;
		margin: auto;
		padding: 0;
	}
	.content {
		max-width: 1000px;
		margin: auto;
		background: white;
	}
	.footerflex {
		display: -webkit-box;
		display: flex;
		gap: 5px;
		-webkit-box-pack: center;
		justify-content: center;
		align-items: center;
	}
	.footertext {
		margin: 0;
		font-size: 12px;
		font-family: arial;
		color: #f1f1f1;
	}
	.flex1 {
		display: flex;
		gap: 10px;
		flex-direction: row;
		align-items: center;
		width: 100%;
	}
	.flextitle {
		flex-grow: 1;
		width: 30%; 
		text-allign: left;
	}
	.flexdesc {
		flex-grow: 1;
		width: 70%; 
		text-allign: left;
	}
	.audiorow {
		display: flex;
		flex-wrap: wrap;
		vertical-align: middle;
		align-items: center;
		text-allign: left;
		
	}
	.btn {
		background-color: #556b69;
		color: white;
		font-size: 20px;
		padding: 5px;
		border: none;
		border-radius: 5px;
		width: 135px;
		cursor: pointer;
	}

	.btn:hover {
		background-color: #38595e;
	}
	.btn3 {
		background-color: #416161;
		color: white;
		font-size: 15px;
		padding: 8px;
		border: none;
		border-radius: 5px;
		cursor: pointer;
	}

	.btn3:hover {
		background-color: #2a4242;
	}
	
	
	table {
        font-family: arial, sans-serif;
        border-collapse: collapse;
        width: 100%;
    	}

	td {
		border-top: 1px solid #cccccc;
		padding-left: 20px;
		text-align: left;
	}
	
	tr:nth-child(odd) {
		background-color: #e1e6e5;
	}
	tr:nth-child(even) {
		background-color: #f1f1f1;
	}
	
	section::after {
		content: "";
		display: table;
		clear: both;
	}
		
	header {
		background-color: #acbdbc;
		padding: 5px;
		width: 100%;
		text-align: center;
		font-size: 20px;
		color: black;
	}
	footer {
		background-color: #7c9190;
		padding: 20px;
		width: 100%;
		text-align: center;
		color: white;
	}
	h3 {
		margin-top: 12px;
		margin-bottom: 12px; 
		margin-left: 10px;
	}
	audio {
		width: 280px;
		background-color: #51f6fc;
		margin-right: 20px;
	}
	@media screen and (max-width: 600px) {
		.flex1 {
		flex-direction: column;
		}
		.flextitle, .flexdesc {
		width: 100%;
		}
		.flextitle {
		height: 2px;
		}
		
	}