body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../backgrounds/moving/stars3.gif");
    background-size: auto;
    background-repeat: repeat;
}

header {
    width: 100%;
    background-color: rgba(255, 153, 0, 0.8);
    font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
}

header h1 {
    font-size: 4.25em;
    font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.banner {
    border: 3px solid #812500;
    border-radius: 10px;
}
.banner-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
}

.window-container {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 30px;
}

.window-col {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.col-main {
    width: 75%;
}

.col-side {
    width: 35%;
}

.window {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 3px solid #812500;
    border-radius: 10px;
    background-color: rgba(239, 108, 0, 0.8);
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.window-title {
    width: 100%;
    background-color: rgba(255, 153, 0, 0.8);
    font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
}
.window-title h1 {
    font-size: 3em;
    margin: 10px 20px;
}

.window-content {
    width: 100%;
    background-color: rgba(239, 108, 0, 0.8);
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    font-family: "Geo", sans-serif;
}
.window-content h1 {
    font-size: 3.5em;
    margin: 10px 0;
}
.window-content h2 {
    font-size: 2.25em;
    margin: 10px 0;
}
.show-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    list-style: none;
    text-align: left;
}
.show-title::before {
    content: ">";
    font-size: 0.9em;
    transition: transform 0.2s ease;
}

details[open] > .show-title::before {
    transform: rotate(90deg);
}
.show-title h2 {
    font-size: 2.25em;
    margin: 10px 0;
    display: inline;
    text-align: left;
}
.window-content p {
    font-size: 1.75em;
    margin: 10px 0;
    font-family: "Jersey 10", sans-serif;
}

.show-window {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin: 7px;
    width: 100%;
}

.radio-title h3 {
    font-family: "Geo", sans-serif;
    font-size: 1.8em;
    margin: 5px 0;
    justify-content: center;
    text-align: center;
}

.show-img {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.show-img img {
    width: 40%;
    height: auto;
}

.divider {
    width: 100%;
    height: auto;
    margin: 15px 0;
}

.back-btn {
    background-color: rgba(239, 108, 0, 0.8);
    border: 3px solid rgba(110, 50, 0, 0.8);
    padding: 10px;
}
.back-btn p {
    font-family: "Rubik Glitch", system-ui;
    color: black;
    font-size: 2.5em;
    text-decoration: none;
    margin: 0;
}
.back-btn a {
  text-decoration: none;
}
.back-btn:hover {
  scale: 1.1;
}

.banner .imgtxt span {
    font-size: 2.5rem;
    white-space: nowrap;
}

.body-img-l {
    width: 225px;
    height: auto;
    margin: 10px;
    border: 5px solid #812500;
    float: left;
}

.body-img-r {
    width: 225px;
    height: auto;
    margin: 10px;
    border: 3px solid #812500;
    float: right;
}

.body-img-r.img-lg {
    width: 300px;
    height: auto;
}

.body-sec {
    display: block;
}

.body-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.body-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
}
.body-col.media-col {
    justify-content: space-around;
}

.text-with-images {
    display: block;
}

.image-stack {
    float: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
    margin: 0 0 12px 20px;
}

.image-stack img {
    display: block;
    width: 300px;
    height: auto;
}

.text-with-images::after {
    content: "";
    display: block;
    clear: both;
}