.home-section {
    min-height: 100vh;
}

.home-content {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.bg-image {
    /* The image used */
    background-image: url(assets/background.webp);
  
    /* Add the blur effect */
    filter: blur(8px);
    -webkit-filter: blur(8px);

    /* Full height */
    height: 100vh;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    margin-top: 20vh;
    margin-bottom: 10vh;
    animation: fadeInAnimation ease 1s;
    width: 60%;
    min-width: 5vh;
    max-width: 50vh;
    border: 2px solid #71ce7e;
    border-radius: 5px;
}

.scroll-box {
    width: 300px;
    margin: auto;
    background-color: #00000066;
    color: #71ce7e;
    font-weight: bold;
    font-size: 25px;
    text-decoration: none;
    border: 2px solid #71ce7e;
    border-radius: 5px;
    padding: 8px;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
}

body {
  background-color: #181b18;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    min-height: 100vh;
    text-align: center;
}

#schedule-content {
    overflow: auto; 
    max-height: 50vh;
}

.section {
    font-size: 30px;
    color: white;
    padding-top: 150px;
    text-align: center;
}

.section-title {
    z-index: 999;
    color: #71ce7e;
    box-shadow: 0 0px 5px 2px #71ce7e;
    margin: auto;
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 50px;
    margin-top: 30px;
    border-radius: 5px;
}

.section-backdrop {
    width: 60%;
    margin: auto;
    background-color: #272727;
    padding: 40px;
    font-size: 1.5rem;
    max-width: 1000px; 
    margin-top: 50px;
}

.left {
    box-shadow: -60px -50px #71ce7e;
}

.right {
    box-shadow: 60px -50px #71ce7e;
}



/* NAVBAR CSS */
.navigation {
    display: flex;
    float: right;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.navigation-item {
    list-style: none;
}

.navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #272727;
    z-index: 999;
    padding-right: 80px;
    box-shadow: 0 4px 10px -2px #272727;
}

.navbar a {
    text-align: center;
    padding: 14px;
    text-decoration: none;
}  

.inactive-section {
    color: #ffffff
}

.active-section {
    color: #71ce7e;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}
