body{
    color: white;
    background-color: #080808;
    font-family: 'D-DIN';
}

.container{
    margin: 20px 100px;
    border: solid #0e0f0e;
    border-radius: 10px;
}
body{
    color: white;
    background-color: #080808;
}

.heading{
    text-align: center;
    color: #f4f2f1;
    font-family: 'D-DIN Bold';
    font-size: 5rem;
}
.heading::after{
    content:" ";
    width: 100%;
    height: 2px;
    background: #2518d6;
    background: linear-gradient(90deg,rgb(35, 122, 156) 0%, rgba(37, 24, 214, 1) 50%, rgba(37, 24, 214, 0) 80%);
    display: inline-block;
}

.content{
    display: grid;
    grid-template-columns: 75% 25%;
}

.liveStreamers{
    align-items: center;
    display: flex;
    flex-direction: column;
}

.liveStreamType{
    display: flex;
    align-items: center;    /* vertical centering */
    justify-content: center; /* horizontal centering */
    padding: 0 10px;
    height: 50px;
    background-color: rgba(31, 31, 31, 0.5);
    border-radius: 10px;
    margin: 25px 0;

    font-size: 1.5rem;
}
.camContainer{
    display: flex;
    flex-wrap: wrap;
}

.cam{
    margin: 5px;
    border: solid #0e0f0e;
    border-radius: 10px;

    margin-left: auto;
    margin-right: auto;
}







.infoContent{
    font-size: 4rem;
}
.infoContent > h2{
    text-align: center;
    margin: 100px 0;
}


.collapsible {
    font-family: 'D-DIN BOLD';
    text-transform: uppercase;
    font-size: 5rem;
    background-color: #d61818;
    color: white;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    border-radius: 0; /* Optional: flatten if you want no spacing gaps */
    margin: 0;         /* Remove default spacing */
  }
  
  .content-box {
    font-size: 2rem;
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #1a1a1a;
    margin: 0;         /* Remove default spacing */
    border: none;      /* Remove extra border if present */
  }
  .collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 3rem;
    color: white;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

  .sexy-border{
    border: solid #0e0f0e;
    border-radius: 10px;
  }

.text-bold, bold{
    font-family: "D-DIN BOLD";
    font-weight: bold;
}
.alternatingPicAndText{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 100px;
}
.alternatingPicAndText > img{
    width: 500px;
    height: 500px;
}
.alternatingPicAndText:nth-child(even) {
    flex-direction: row-reverse;
}

.alternatingPicAndText > span > a::before {
    content: "🔗 ";
    display: inline;
    margin-right: 4px;
}

.individual-section{
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 50px;
}
.individual-section> img{
    max-width: 300px;   
}
.individual-section > p{
    font-size: 1rem;
}
.person-section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.group-divider{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}
.group-divider >h2::after{
    content:" ";
    width: 100%;
    height: 2px;
    background: #2518d6;
    background: linear-gradient(90deg,rgb(35, 122, 156) 0%, rgba(37, 24, 214, 1) 50%, rgba(37, 24, 214, 0) 100%);
    display: block;
}



footer{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #1c1f6a;
    color: white;
}
.footerHeader{
    display: flex;
    align-items: center;
    font-size: 2rem;
}
.footerHeader > img{
    width: 100px;
    height: 100px;
}






@media only screen and (max-width: 1400px) {
    h1{
        font-size: 5rem;
    }
    h2{
        font-size: 3rem;
    }
    .heading > h1{
        font-size: 5rem;
    }
    .content{
        /*background-color: rgba(255, 0, 0, 0.068);*/
        display: flex;
        flex-direction: column;
    }

}