* {
    padding: 0;
    margin:0;
    box-sizing: border-box;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
	text-align: center;
}

html, body
{
    height: 100%;
    position: relative;
    background-color: black;
    color: white;
    background: url("../images/repeating-background.jpg");
}

h1 /*NEWS & ANNOUNCEMENTS*/
{
    padding: 20px;
    font-size: 48px;
	text-decoration: underline;
}

h2 /* song titles*/
{
    font-size: 24px;
    display: block;
	text-decoration: none;
}

button
{
	font-size: 36px;
}

li
{
    padding: 20px;
    list-style-type: none;
}

img
{
	/* height: 100% */
	max-height:100%;
	width:100%;
	margin: 5px;
}

div#news, div#songs, div#images
{
    width: 33%;
    float: left;
    min-height: 50%;
}

div#news-and-announcements
{
    min-height: 300px;
	border-bottom: 1px solid white;
}

audio
{
    margin: 5px;
	max-width: 100%;
}

/* 	Style the button that is used to open and close the collapsible content
	https://getcssscan.com/css-buttons-examples */ 

.collapsible {
	letter-spacing: 2px;
	text-decoration: none;
	text-transform: uppercase;
	color: #000;
	cursor: pointer;
	border: 3px solid;
	padding: 0.25em 0.5em;
	box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
	position: relative;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	display: block;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.active,.collapsible:{
	box-shadow: 0px 0px 0px 0px;
	top: 5px;
	left: 5px;
}

td {
text-align: center
}

a {
color: white
}

/* Style the collapsible content. Note: hidden by default */
.content {
	padding: 0 18px;
	display: none;
	overflow: hidden;
}

@media only screen and (max-width: 1024px) 
{
    
    h1 /*NEWS & ANNOUNCEMENTS*/
    {
        font-size: 36px;
    }	

    h2	/* song titles*/
    {
        font-size: 20px;
    }

	button
	{
		font-size: 24px;
	}

@media only screen and (max-width: 768px) 
{

    h1 /*NEWS & ANNOUNCEMENTS*/
    {
        font-size: 24px;
    }	

    h2	/* song titles*/
    {
        font-size: 16px;;
    }

	button
	{
		font-size: 36px;
	}

    div#news,div#images,div#songs
    {
        width:100%;
    }

	.wrapper {
		display: flex;
		flex-direction: column;
	}

	.wrapper div:first-child {
    order: 1;
	}
   
    div#news
    {
        border-bottom: 1px white solid;
    }
    

}