﻿@import url(https://fonts.googleapis.com/css?family=Open+Sans);


body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: repeat-y;
    background-image: url("/public/img/blue-space-bg.jpg");
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    color: white;
}

.content {
    text-align: center;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 1000ms ease-out, transform 600ms ease-out,
    visibility 1200ms ease-out;
    will-change: opacity, transform, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.fade-in-section.is-visible.post-intro {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition-delay: 1.25s;
}

.Navbar {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 99;
}

.Navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: black ;
    margin-top: 0;
    padding-left: 0;
}

.Navbar .nav-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem; /* Add space between flex items */
    list-style-type: none;
    margin: 0;
    padding: 2rem;
}

.Navbar .nav-links li {
    display: flex; /* Ensure consistent alignment */
    align-items: center;
}

.Navbar ul li a {
    padding: 0.5rem 1rem;
    font-family: "Open Sans", serif;
    text-transform: uppercase;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease-out;
}

.Navbar ul li a:hover {
    box-shadow: 0 0 20px rgba(100, 100, 100, 0.1);
    background: rgba(255, 255, 255, 0.1);
    color: cyan;
    transform: scale(1.5);
}

.resume {
    margin-left: auto;
}

.resume .nav-icon {
    display: block;
}

.nav-icon {
    display: none;
    font-size: 1.2em;
}

@media screen and (max-width: 780px) {
    .nav-text {
        display: none;
    }

    .nav-icon {
        display: inline-block;
    }

    .Navbar ul li a {
        margin: 10px 15px;
        padding: 12px;
    }

    .initials-text {
        font-size: 14px;
    }
}

.Navbar ul li a:hover .nav-icon {
    color: cyan;
}

.initials {
    margin-right: auto;
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.initials-text {
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    25% {
        text-shadow: 0 0 5px #ffa500, 0 0 10px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 80px #ffa500;
    }
    50% {
        text-shadow: 0 0 5px #faeb36, 0 0 10px #faeb36, 0 0 20px #faeb36, 0 0 40px #faeb36, 0 0 80px #faeb36;
    }
    75% {
        text-shadow: 0 0 5px #79c314, 0 0 10px #79c314, 0 0 20px #79c314, 0 0 40px #79c314, 0 0 80px #79c314;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}

.greeting {
    font-size: xx-large;
    font-weight: bold;
}



