* {
  box-sizing: border-box;
}

body {
  background-image: url(images/backgroundimage.jpeg);
  padding: 50px;
  font-family: Luminari;
  font-size: small;
  color: #131212;
  cursor: url(images/southpark.png), auto;
}

.headertitle {
  text-decoration: none;
}

.title{ 
      text-decoration: none;
      cursor: pointer;
}

a:link {
  color: rgb(214, 207, 255);
}

/* visited link */
a:visited {
  color: rgb(169, 159, 225);
}

/* mouse over link */
a:hover {
  color: rgb(105, 120, 255);
}

.title {
  text-shadow: 2px 2px rgb(172, 162, 248);
  font-size: larger;
}

.largeheading {
  text-shadow: 2px 2px rgb(172, 162, 248);
  font-size: larger;
  text-decoration: underline;
}

.smallheading {
  text-shadow: 2px 2px rgb(172, 162, 248);
  font-size: large;
  text-decoration: underline;
}

.smallemphasis {
  text-shadow: 2px 2px rgb(172, 162, 248)
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 5px;
}

audio {
  max-width: 200px;
  max-height: 20px;
  display: none;
}
/* Header/Blog Title */
.header {
  min-width: 150px;
  padding: 20px;
  font-size: large;
  text-align: left;
  background: rgb(84, 147, 249);
  border-radius: 10px;
  border-color: bisque;
  border-style: double;
  border-width: medium;
}

/* Create two columns next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 25%;
  min-width: 150px;
  height: auto;
  text-align: left;
  font-size: small;
  object-fit: contain;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 75%;
  padding-left: 20px;
  min-width: 150px;
  height: 1000px;
  text-align: left;
  font-size: small;
  object-fit: contain;
}

.leftsidebar {
  background-color: rgb(84, 147, 249);
  padding: 20px;
  margin-top: 20px;
  height: 100%;
  border-radius: 10px;
  border-color: bisque;
  border-style: double;
  border-width: medium;
}

.rightarea {
  background-color: rgb(84, 147, 249);
  padding: 20px;
  margin-top: 20px; 
  height: auto;
  border-radius: 10px;
  border-color: bisque;
  border-style: double;
  border-width: medium;
}

.column {
  float: left;
  width: 50%;
  padding: 5px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background:rgb(84, 147, 249) ;
  margin-top: 20px;
}

/* 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 screen and (max-width: 800px) and (min-width: 100px){
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Popup player styles */
#player-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}

#player-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}