/* styles.css */

/* Import Highway Gothic font */
@import url('https://fonts.cdnfonts.com/css/highway-gothic');

/* CSS for the logo image */
.logo {
    width: 150px; /* Increased width for the logo */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 35px; /* Add margin at the bottom */
    color: #00ffff; /* Lime green text color */
}

/* Additional CSS for navigation, content, etc. */
header {
    text-align: center;
    margin-bottom: 40px; /* Increased margin-bottom for spacing */
    color: #00ffff; /* Lime green text color */
}

nav ul {
    list-style-type: none;
    margin: 1;
    padding: 1;
    text-align: center;
    color: #33ff00; /* Lime green text color */
    font-family: Arial, sans-serif;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 14px; /* Adjust button size */
    font-size: 12px; /* Adjust font size */
    border-radius: 10px; /* Rounded corners */
    background-color: rgba(51, 255, 0, 0.15); /* Lime green background color with 25% opacity */
    color: #33ff00; /* Lime green text color */
    box-shadow: 0 0 20px #33ff00; /* Glow effect */
    animation: glowing 3s infinite; /* Glowing animation */
    transition: transform 0.2s, background-color 0.4s; /* Add transition for background color */
}

nav ul li a:hover {
    transform: scale(1.1); /* Scale on hover */
}

/* Make selected button yellow */
nav ul li a.active {
    background-color: rgba(51, 255, 0, 0.15); /* Yellow background color */
    color: #ffff00; /* Yellow text color */
}

@keyframes glowing {
    1% {
        box-shadow: 0 0 10px #33ff00; /* Initial glow */
    }
    50% {
        box-shadow: 0 0 30px #33ff00; /* Mid glow */
    }
    100% {
        box-shadow: 0 0 10px #33ff00; /* Final glow */
    }
}

/* Container for page content */
.content-container {
    max-width:500px;
    margin: 0 auto; /* Centers the container horizontally */
    padding: 0 20px; /* Adds padding to the sides */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.center-content {
    text-align: center;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #33ff00; /* Lime green text color */
    font-family: 'Highway Gothic', Arial, sans-serif; /* Apply font family */
}

button {
    padding: 15px 25px; /* Adjust button size */
    font-size: 18px; /* Adjust font size */
    cursor: pointer;
    color: #33ff00; /* Lime green text color */
    background-color: rgba(51, 255, 0, 0.25); /* Lime green background color with 25% opacity */
    border: 2px solid #33ff00; /* Lime green border */
    border-radius: 30px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: #ffff00; /* Change background color on hover */
    color: #ffff00; /* Change text color on hover */
}

footer {
    text-align: center;
    color: #33ff00; /* Lime green text color */
}

/* Apply background image to entire page */
html {
    background-image: url('back.gif');
    background-size: cover;
    background-attachment: fixed; /* Keep background image fixed */
}

/* Set body to scrollable */
body {
    overflow-y: scroll; /* Enable vertical scrolling */
}

/* MP3 Player styles */
.podcast-player {
    background-color: rgba(51, 255, 0, 0.15); /* Transparent green background color with 15% opacity */
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

/* Custom styles for the audio player */
audio {
    width: 90%; /* Make the audio player wider */
    margin-top: 10px; /* Add some space at the top */
    background-color: rgba(51,
