* {
  box-sizing: border-box;
}


html {
    margin:    0 auto;
    max-width: 1200px;
}
body {
  font-family: Arial;
  padding: 10px;
  background: #ffffff;


}

/* Header/Blog Title */
.header {
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 5%;
  padding-bottom: 5%;
  border-radius: 25px;
  text-align: center;
 background: rgb(31,88,177);
background: linear-gradient(45deg, rgba(31,88,177,1) 33%, rgba(182,28,116,1) 33%, rgba(182,28,116,1) 66%, rgba(131,24,108,1) 66%, rgba(112,23,105,1) 100%);
  
}

.filter-white{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(152deg) brightness(106%) contrast(102%);
}

a:link {
color: #B61C74;
text-decoration: none;
}


a:visited {
color: #B61C74;
text-decoration: none;
}

li {
padding-top: 5px;
}
.logo {
  width: 100%;
  height: auto;
}

.footerlogo {
  width: 100%;
  height: auto;
  width: 100px;
}

img {
  width: 100%;
  height: auto;
  border-radius: 25px;
    margin-top: 20px;
}

audio{
	width: 100%;
}


.header h1 {
  font-size: 40px;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}


/* Add a card effect for articles */
.card {

  padding: 20px;
  margin-top: 20px;
  border-radius: 25px;
  border-style: solid;
  border-width: 1px;
  border-color: #C1C2C3;
}

h2 {
	margin-top: 3px;
	margin-bottom: 3px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: white;
  margin-top: 20px;
  border-radius: 25px;
  color: #ffffff;
  box-shadow: 0px 0px 8px #bbbbbb;
 background: rgb(31,88,177);
background: linear-gradient(45deg, rgba(31,88,177,1) 33%, rgba(182,28,116,1) 33%, rgba(182,28,116,1) 66%, rgba(131,24,108,1) 66%, rgba(112,23,105,1) 100%);

}

details {
  user-select: none;
  
}

details>summary span.icon {
  width: 24px;
  height: 24px;
  transition: all 0.6s;
  margin-left: auto;
}

details[open] summary span.icon {
  transform: rotate(180deg);
}

summary {
  display: flex;
  cursor: pointer;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media all and (max-width:800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
body {
	padding: 0px;
}

.header {
	padding-left: 5%;
    padding-right: 5%;
    padding-top:10%;
    padding-bottom: 10%;
	border-radius: 0px;
}

.card {
  background-color: white;
  border-radius: 0px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  margin:0px;
}

.footer {
	border-radius: 0px;
}
}