/* Header Styles */
header {
    background-color: #1cabe2;
    color: white;
    padding: 10px 0;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo svg {
    width: 30px;  /* Adjust size */
    height: 30px; /* Adjust size */
    fill: #fff;   /* Change icon color */
    margin-right: 8px;  /* Space between the icon and the text */
}

@media (max-width: 768px) {
    .logo svg {
        width: 25px;  /* Adjust size for mobile */
        height: 25px; /* Adjust size for mobile */
    }
}

/* Menu Styles */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Main Content Styles */
#main-content {
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    /* Mobile Menu Styles */
    .menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .menu li {
        padding: 10px 0;
    }

    .menu-icon {
        display: block;
    }

    #main-content {
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 15px;
    background-color: #1cabe2;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Text Container Styles */
.text-container {
    text-align: center;
    padding: 20px; /* Add some padding for better spacing */
}

.stable-text {
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 24px; /* Default font size for stable text */
}

.dynamic-text {
    color: #3498db;
    font-weight: 600;
    transition: opacity 0.5s ease-in-out;
    font-size: 36px; /* Default font size for dynamic text */
}

@media (max-width: 768px) {
    .stable-text {
        font-size: 30px; /* Increased size for mobile */
    }
    .dynamic-text {
        font-size: 40px; /* Increased size for mobile */
    }
}

@media (min-width: 769px) {
    .stable-text {
        font-size: 28px; /* Slightly larger for desktop */
    }
    .dynamic-text {
        font-size: 44px; /* Slightly larger for desktop */
    }
}
