body {
    background-image: url("https://files.catbox.moe/fe9nxs.gif");
    background-repeat: repeat;
    font-size: 1em;
    font-family: "Balsamiq Sans", Arial, sans-serif;
}

p {
  line-height: 1.5em; 
}
h1, h2, h3, h4, h5 {
    font-family: "Special Elite","Times", serif;
  color: black;
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}
#container {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
     background-size: 25px auto;
      background-image: url('https://misfitpixie.neocities.org/images/bg/lined.png');
    background-repeat: repeat;
    background-color: #ffffff;
    border-radius: 10px;
   
}

.footer {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 2px dashed #8e0d0d;
    font-size: 0.9em;
    color: #666;
    text-align: center;

}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
/* Hide radio buttons */
input[type="radio"] {
    display: none;
}

/* Tab labels */
.tab-label {
    padding: 10px 20px;
    background-color: #c0c0c0;
    margin-right: 5px;
    font-family: "Special Elite","Times", serif;
    border-radius: 5px 5px 0 0;
    display: inline-block;
}

input[type="radio"]:checked + .tab-label {
    background-color: #ac0a0a;
    color: white;
}


.tab-content {
    display: none;
    padding: 20px 0;
}

/* to show the selected tab's content */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
    display: block;
}