/* General text settings */
body {
    font-family: VT323, monospace;
    font-size: 18px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 50px;
}

h1 {
    color: #00ff00;
    background-color: #000000;
}
p{
    color: #00ff00;
    text-decoration: none;
}
a {
    color: #00ff00;
    text-decoration: none;
}

a:hover {
    text-decoration: bold;
}



/* Navigation Styles */
.navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.nav-button {
    padding: 15px 20px;
    background-color: #00ff00;
    color: black;
    text-decoration: none;
    border-radius: 25px; /* More rounded corners */
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    width: 200px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.nav-button:hover {
    background-color: #009c00;
    transform: translateY(-3px) scale(1.05); /* Slightly scale up */
    box-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00; /* Glow effect */
    border: 2px solid #00ff00; /* Add a border on hover */
}

.nav-button:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-button:nth-child(1) {
    animation-delay: 0.2s;
}

.nav-button:nth-child(2) {
    animation-delay: 0.4s;
}

.nav-button:nth-child(3) {
    animation-delay: 0.6s;
}
.nav-button:nth-child(4) {
    animation-delay: 0.8s;
}
.nav-button:nth-child(5) {
    animation-delay: 1.0s;
}
.nav-button:nth-child(6) {
    animation-delay: 1.2s;
}
.nav-button:nth-child(7) {
    animation-delay: 1.4s;
}

/* Profile Image Styles */
.profile-image {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Must match width for a perfect circle */
    border-radius: 50%; /* Makes the image circular */
    border: 3px solid #00ff00; /* Green border */
    object-fit: cover; /* Ensures the image covers the circle without distortion */
    margin-bottom: 20px; /* Space below the image */
    box-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00; /* Glow effect */
}

/* Center the header content */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    color: #0F0;
    padding: 20px 0;
}
