h1{
    text-align: center;
}
h3{
    text-align: center;
    font-size: 14pt;
}
h4{
    text-align:center;
font-size:x-small;
    
}
hr{
    margin-top: 25px;
}
a {
    border-radius: 5px;
}
.news-section {
    text-align: center;
}
.news-link {
    display: block;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvitca Neue";
    font-weight: 300;
    
    
}

body.dark-mode {
    color: white;
}

button {
    color: inherit;
}

.split-container{
    display: flex;
    min-height: 80vh;
    width: 100%;
}
.split-image img {
    width: 55%;
    flex: 0 0 55%;
}
.split-text{
    flex: 0 0 45%;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    box-sizing:border-box;
    background-color: rgb(0 0 0 / 70%);
}
h2{
    text-align: center;
}
body:not(.dark-mode) .split-text {
    background-color: rgb(128 128 128 / 70%);
}
.split-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
@media (max-width: 768px){
    .split-container{
    flex-direction: column;
    height: auto;
}

.split-image{
    height: 40vh;
}
.split-text{
    width: 100%;
    flex: 0 0 auto;
    padding: 2rem;
}
}
.header1{
    
    border-radius: 5px;
    background-color: rgb(128 128 128 / 70%);
    backdrop-filter: blur(8px);
    padding: 10px;
    width: fit-content;
    margin: 0 auto;
}
.header2{
    border-radius: 4px;
    background-color: rgb(128 128 128 / 70%);
    backdrop-filter: blur(8px);
    padding: 8px;
    width: fit-content;
    margin: 0 auto;
}
.header3{
    border-radius: 3px;
    background-color: rgb(128 128 128 / 70%);
    backdrop-filter:blur(8px);
    padding: 6px;
    width: fit-content;
    margin: 0 auto;


}
.videos{
    display:flex;
    width: 100%;
    min-height: 25vh;
    flex-wrap: wrap;
}
.video-wrapper {
    flex: 1;
    position: relative;
    min-width: 320px;
    min-height: 315px;
}
.video-wrapper iframe{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px){
    .videos{
        flex-direction: column;
    }
    .video-wrapper{
        min-width: 0;
        min-height: 0;
    }
    .video-wrapper iframe{
        aspect-ratio: 16 / 9;
        height: auto;
    }
}
