body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: linear-gradient(45deg, 
                                rgba(0, 0, 0, 0.8), 
                                rgba(255, 0, 0, 0.5), 
                                rgba(0, 128, 0, 0.5), 
                                rgba(0, 0, 255, 0.5), 
                                rgba(75, 0, 130, 0.5), 
                                rgba(238, 130, 238, 0.5), 
                                rgba(0, 0, 0, 0.8)); /* Black with subtle rainbow colors */
    background-size: 200% 200%;
    animation: gradientAnimation 20s ease infinite; /* Slower animation for calm effect */
}

@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

header {
    background: rgba(0, 0, 0, 0.8); /* Darker header background */
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a.active {
    color: #fff; /* Light blue highlight */
}

.entry-animation {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 3s ease-in-out;
    font-size: 1rem; /* Adjust the font size as needed */
    color: #fff; /* Text color */
    text-shadow: 
      2px 2px 5px rgba(0, 0, 0, 0.5),  
      -2px -2px 5px rgba(0, 0, 0, 0.5),
      2px -2px 5px rgba(0, 0, 0, 0.5),
      -2px 2px 5px rgba(0, 0, 0, 0.5), 
      0 0 10px rgba(0, 0, 0, 0.5); /* Creates a 3D effect */
  }

.entry-animation h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    opacity: 0;
    animation: textFadeIn 2s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes textFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

section {
    padding: 50px 20px;
    min-height: 100vh;
}

#about, #apps {
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .content-box {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent dark background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    width: 80%;
    max-width: 1200px;
    backdrop-filter: blur(10px);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.app {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    box-align: center;
}

.app h3 {
    margin: 0;
    color: #00bfff; /* Light blue text for app titles */
}

.move-up {
    position: relative;
    top: -50px; /* Adjust this value as needed */
    text-align: center; /* Center the content horizontally */
}

img {
    max-width: 100%;
    height: auto;
}

.content.content-box{
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent dark background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    width: 80%;
    max-width: 1200px;
    backdrop-filter: blur(10px);}

