
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
}

body {
    background: url('Plexus_logo.webp');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    transform: scale(1.2);
    color: #FFD700; 
}


.content {
    text-align: center; 
	    max-width: 800px;
            margin: 300px auto;
            padding: 2px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
     
}

.welcome-text {
    margin: 20px auto;
    font-size: 20px;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
}
   


        .header li {
            list-style: none;
            display: inline;
            margin: 0 15px;
        }

        .header a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .header a:hover {
            background-color: #575757;
            border-radius: 5px;
        }
.bottom-left-gif {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
}

.bottom-left-gif img {
    width: 150px; /* Adjust size as needed */
    height: auto;
    border-radius: 8px;
}



