body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow: auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
}

.navbar a.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar img {
    opacity: 0.9;
    height: 50px;
}

.slideshow-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.image-strip {
    display: flex;
    width: 400%;
    height: 100%;
}

.slide {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.text {
    position: absolute;
    bottom: 100px;
    left: 30px;
    color: white;
    z-index: 50;
}

.text h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    animation: springUp 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

@keyframes springUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.subpage-nav {
    position: relative !important;
    background-color: white !important;
    border-bottom: 1px solid #ddd;
}

.content-container {
    padding: 50px;
    text-align: center;
}

.nav-buttons span {
    font-size: 24px;
    cursor: pointer;
}

.nav-buttons a {
    color: black !important;
    text-decoration: none !important;
    border: 2px solid black !important;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.logout-btn {
    color: black !important;
    text-decoration: none !important;
    border: 2px solid black !important;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}