:root {
  --white: #faf7fa;
  --darkpink: #e9b0cc;
  --pink: #ffd8eb;
  --darkblue: #5622ad;
  --blue: #bcc3f7;
}
.rubik-wet-paint-regular {
  font-family: "Rubik Wet Paint", system-ui;
  font-weight: 400;
  font-style: normal;
}
.dynapuff-font{
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
 	font-weight: 400;
 	font-style: normal;
  font-variation-settings: "wdth" 100;
}
h1 {
  font-family: "Rubik Wet Paint", system-ui;
  font-size: 5em;
  text-align: center;
  color: var(--white);
  -webkit-text-stroke: 1px var(--darkblue);
}
h2 {
  font-family: "Dynapuff", system-ui;
  font-size: 1.5em;
  text-align: center;
  color: var(--darkblue);
}
p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1em;
}
body {
  background: url(https://media.istockphoto.com/id/2121917811/vector/pink-gingham-plaid-checkered-pattern-background-perfect-for-wallpaper-backdrop-postcard.jpg?s=612x612&w=0&k=20&c=Ftxi3UnJ1IeWsLAe13Zp1jNfZFNO2-1Df0HCwaGGMms=);
  background-repeat: no-repeat;
  background-size: cover;
 	background-position: center;
  background-attachment: fixed;
  height: 100vh;
  font-family: "DynaPuff", system-ui;
  height: 100vh;
  color: var(--darkblue);
}
.container {  
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 0.5fr;
  grid-template-rows: 0.5fr 0.2fr 0.9fr 0fr;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "Header Header Header"
    "marquee marquee marquee"
    "side main otherside"
    "footer footer footer";
  border: outset var(--darkpink) 5px;
  padding: 5px;
  background: var(--pink);
  margin: 50px;
}
.Header { 
  grid-area: Header;
  padding: 5px;
  border: solid var(--darkpink) 2px;
  background: #BCC3F7;
	background: linear-gradient(180deg,rgba(188, 195, 247, 1) 0%, rgba(250, 247, 250, 1) 100%);
}
.marquee { 
  grid-area: marquee; 
  border: solid var(--darkpink) 2px;
  background: var(--white);
}
.side { 
  max-height: 70vh;
  grid-area: side; 
  border: solid var(--darkpink) 2px;
  background: var(--white);
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.main { 
  grid-area: main; 
  max-height: 70vh;
  border: solid var(--darkpink) 2px;
  padding: 10px;
  background: var(--white);
}
.otherside { 
  grid-area: otherside; 
  max-height: 70vh; 
  border: solid var(--darkpink) 2px;
  background: var(--white);
  padding: 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.footer { 
  grid-area: footer;
  margin-top: 10px;
}
.title {
  width: fit-content;
  border: dashed 2px var(--darkpink);
  border-radius: 25px;
  background: #B390E0;
  background: linear-gradient(0deg, rgba(179, 144, 224, 1) 0%, rgba(188, 195, 247, 1) 35%, rgba(255, 216, 235, 1) 65%, rgba(250, 247, 250, 1) 100%);
  margin: auto;
  margin-top: 5px;
  padding: 5px;
  align-text: center;
}
.blorbo {
  transition: transform 0.1s ease-out; /* Smooth transition for the effect */
}
.blorbo:active {
  transform: scale(0.90); /* Shrinks the button to 95% of its original size */
}
audio {
  width: 100%;
  margin-bottom: 10px;
}
audio::-webkit-media-controls-panel {
  background-color: var(--blue);
}
/* Style the play button */
audio::-webkit-media-controls-play-button {
  background-color: var(--blue);
  border-radius: 50%;
}

/* Style the timeline */
audio::-webkit-media-controls-timeline {
  background-color: var(--blue);
  border-radius: 3px;
}
/* Style the volume slider */
audio::-webkit-media-controls-volume-slider {
  background-color: var(--blue);
}
@media only screen and (max-width: 750px) {
  .container {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas:
    "Header"
    "marquee"
    "main"
    "side"
    "otherside"
    "footer";
    margin: 5px;
  }
  .header, .marquee, .side, .main, .otherside, .footer {
    height: max-content;
  }
}