body {
    margin: 0;
    font-family: 'Transport', sans-serif;
    background-color: #0179C0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding-left: 50px;
    box-sizing: border-box;
}

.bigtext {
    font-size: 3.85em;
    font-weight: bold;
    color: white;
    text-align: left;
    line-height: 1.2;
    font-family: 'Transport', sans-serif;
    margin-top: 100px;
    margin-bottom: 100px;
    box-sizing: border-box; /* Ensures margins are calculated correctly */
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter.ttf') format('truetype');
}

@font-face {
    font-family: 'Transport';
    src: url('./fonts/Transport Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Transport Heavy';
    src: url('./fonts/Transport Heavy.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans';
    src: url('./fonts/SourceSans.ttf') format('truetype');
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  font-size: 1em;
  text-align: left;
  padding-left: 50px;
  padding-bottom: 50px;
  width: 100%;
}

footer p {
  font-family: 'Transport', sans-serif;
  color: white;
}

nav {
    text-align: left;
    width: 100%;
}

ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

li {
    position: relative;
    margin: 0px 0;
    padding-left: 20px; /* Adds space for the bullet */
}

/* Only apply line for submenu headers */
li > a {
    position: relative;
    display: block; /* Makes the link a block element */
}

/* The line for the submenu header */
li > a::before {
    content: ''; /* Creates the pseudo-element */
    position: absolute;
    left: -101vw; /* Moves the bullet to the left side of the submenu header */
    top: 50%; /* Vertically center the line with respect to the submenu header */
    transform: translateY(-50%); /* Fine-tune vertical alignment */
    width: 100vw; /* Stretch the line across the entire width of the viewport */
    height: 0px; /* Defines the thickness of the line */
    background-color: white; /* Line color */
}

/* Remove the line for non-header items */
li > ul > li > a::before {
    content: none;
}

li > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}

li > ul {
    margin: 0;
    padding: 0;
}

.submenu li {
    margin: 0;
}


/* Initially hide submenus */
.submenu {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding-left: 60px;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
}

.submenu.show {
    visibility: visible;
    opacity: 1;
    max-height: 5000px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0s 0s;
}

/* The icon styling */
.icon {
    margin-left: 10px; /* Add some spacing */
    cursor: pointer; /* Make it clickable */
    font-family: 'Source Sans', sans-serif;
    display: inline-flex;
    font-size: 1em;
    align-items: center;
}

a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0;
    height: 73px;
}

.icon a:hover {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.roundabout {
    position: fixed;
    top: 50%;
    right: -40%;
    z-index: -1;
    transform: translateY(-50%);
    animation: spin 10s linear infinite;
    width: 80%;
}

.streaming {
    vertical-align: middle;
    height: 0.8em;
    display: inline;
    padding: 4px;
}

.str {
  display: inline;
}

/* ABOUT DIV ELEMENTS */

    .aboutdiv {
        background-color: white;
        color: #0179C0;
        padding: 20px;
        position: relative;
        text-align: left;
        width: 50vw;
    }
    
    /* Styling for the about text */
    .about-text h1 {
        font-size: 1em;
        padding: 0;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 1em;
        font-weight: normal;
        margin-bottom: 20px;
    }
    
    .aboutp {
        font-size: 0.5em;
        font-weight: normal;
        margin-top: 20px;
    }
    
/* Slideshow container */
    .image-gallery {
        position: relative;
        display: flex;
        overflow: hidden;
        padding: 10px;
        border-top: 10px solid #0179C0;
        border-bottom: 10px solid #0179C0;
        width: calc(100%-20px);
    }
    
    .image-wrapper {
        display: flex;
        animation: scroll 10s linear infinite;
        width: max-content;
    }
    
    .image-wrapper img {
        margin-right: 10px;
        height: 100%;
        padding-left: 10px;
        object-fit: cover;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0%);
      }
    }

 
/* ANIMATIONS */

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(-360deg);
    }
}