/* Import fonts */
@import url('//fonts.googleapis.com/css?family=PT+Sans+Narrow');
@import url('//fonts.googleapis.com/css?family=Open+Sans|Roboto');

/* Set global styles */
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Open Sans', 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #222222;
}

/* Set header styles */
header {
  background-color: #333333;
  padding: 5px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

header h1 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 40px;
  margin: 0;
  color: #FFA500;
}

/* Set main content styles */
main {
  width: 80%;
  margin: 0 auto;
  padding: 0 0 85px 0;
  text-align: center;
}

/* Set footer styles */
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  display: block;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 50px;
  max-height: 75px;
  background-color: #333333;
  border-top: 1px solid #000000;
  padding: 10px 15px;
  text-align: left;
  z-index: 10; /* ensure it's above other content */
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

footer p {
  margin: 0;
  color: #FFFFFF;
  font-size: 75%;
  width: 95%;
}

footer small {
  color: #777777;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  display: block;
}

/* Set heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-weight: bold;
  color: #FF8C00;
}

/* Set link styles */
a {
  color: #00FFFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

label {
	color: #FFA500;
	font-size: 75%;
}

/* Set audio player styles */
audio {
  width: 100%;
}

/* Set list styles */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

li {
  width: calc(17% - 10px);
  margin-bottom: 20px;
  text-align: center;
}

/* Set button styles */
button {
  display: block;
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
  background-color: #333333;
  color: #FF8C00;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  border: none;
  box-shadow: inset 0 2px 0 #FFA500, inset 0 -2px 0 #FFA500, inset 2px 0 0 #FFA500, inset -2px 0 0 #FFA500;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button:hover {
  background-color: #000000;
}

button:active {
  text-decoration: underline;
}

/* Set small text styles */
small {
  font-size: 12px;
  color: #00FFFF;
}

/* Set responsive styles */
@media (max-width: 768px) {
  main {
    width: 95%;
  }

  li {
    width: 96%;
  }
}
