body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    background-color: #f4f4f4;
}


#menu-bar {
    background-color: #333;
    color: white;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Iceberg", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    color: #98FF5A;
}

.menu-links li a {
    position: relative;
    text-decoration: none;
    font-size: 30px;
    color: #98FF5A;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.menu-links li a:hover {
    background-color: #9CB0D9;
    color: #333;
}



#header {
    text-align: center;
    padding: 50px 20px;
    font-size: 30px;
    background: linear-gradient(to right, #defeff, #9CB0D9);
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;

}



#about {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
    color: #333;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.6;
}

#chat {
    height: 300px;
    overflow-y: auto;
    margin-left: 20px;
}

#userInput {
    width: calc(100% - 70px);
    height: 40px;
    margin-bottom: 20px;
    flex-grow: 1;
    margin-right: 10px;
    margin-bottom: 20px;
}

button {
    width: 70px;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    margin-bottom: 20px;
}


.links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
    text-align: left;
}

.links li {
    margin: 18px 0;
    transition: transform 0.2s;
}

.links li:hover {
    transform: translateX(8px) scale(1.02);
}

.links a {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    background: #fff;
    color: #333;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(156, 176, 217, 0.15);
    text-decoration: none;
    font-family: 'Iceberg', sans-serif;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    gap: 10px;
}

.links a:hover {
    background: linear-gradient(90deg, #98FF5A 0%, #9CB0D9 100%);
    color: #222;
    box-shadow: 0 4px 16px rgba(156, 176, 217, 0.25);
}

.links .link-arrow {
    font-size: 1.3em;
    margin-left: auto;
    transition: transform 0.2s;
}

.links a:hover .link-arrow {
    transform: translateX(4px) scale(1.2);
}