body {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.box-50 {
    width: 50vw;
    margin: 0 auto;
    padding: 2vw;
}

section {
    font-size: 2vw;
    line-height: 2.8vw;
}

section h1 {
    margin-bottom: 3vw;
}

.sources {
    font-size: 0.8vw;
}

.highlight {
    font-weight: bold;
}

.reveal, .slides {
    height: 100%;
}

.fragment.blur {
    filter: blur(15px);
}

.fragment.blur.visible {
    filter: none;
}

.align-center {
    text-align: center;
    justify-content: center;
}

.align-right {
    text-align: right;
}
.align-right * {
    margin-right: 4vw;
}

a {
    color: #333333;
}

a:visited {
    color: #333333;
    text-decoration: none;
}

h1 {
    font-size: 3.5vw;
    text-transform: uppercase;
    color: black;
    margin: 0;
}

h2 {
    font-size: 2.5vw;
    margin-top: 0.5em;
}

p {
    font-size: 2vw;
    line-height: 2.6vw;
}

.split-image {
    display: flex;
    justify-content: space-between;
    align-items: start;
    height: 100%;
    position: relative;
}

.split-image .left {
    width: 60%;
    background-color: white;
    height: 100vh;
}

.split-image .right {
    display: flex;
    width: 40%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    
.split-image.split-50 .left,
.split-image.split-50 .right {
    width: 50%;
}

.split-image .right img,
.split-image .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contain {
    object-fit: contain !important;
    
}
.top-down {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.top-down .top {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-down .bottom {
    flex: 0 0 25%; 
}

.image-row {
    display: flex;
}

.image-row div {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
}

.image-row div img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dark-slide * {
    color: #eeeeee;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
}

.headline-image {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Ensures it takes up the full viewport height */
    padding: 2vw;
    box-sizing: border-box; /* Ensures padding is considered within the height */
}

.headline-image h1 {
    margin-bottom: 0;
}

.headline-image div {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    overflow: hidden;
}

.headline-image div img {
    width: auto;
    height: 100%; /* Set height to 100% to fit within container’s height */
    max-width: 100%; /* Prevents the image from overflowing horizontally */
    object-fit: contain; /* Ensures the entire image is visible within the div */
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2vw;
}

.tile {
    flex: 1 1 30%;
    margin: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 1vw;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    justify-content: center;
}

.tile.title {
    background-color: #f0f0f0; 
}
.tile.title h1 {
    margin: 0;
    padding: 0;
    font-size: 3vw;
    color: #333;
}

.tile img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensures images scale without cropping */
    border-radius: 4px;
    margin-top: 1vw;
}

.bullet-slide {

}
.bullet-slide ul {
    list-style-type: none;
}
.bullet-slide ul li {
    font-size: 2vw;
    margin-bottom: 1vw;
}

