body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 8px #7276D4, 0 0 10px #7276D4, 0 0 12px #7276D4, 0 0 14px #7276D4;
    }
    
    
    50% {
        text-shadow: 0 0 8px #C800C6, 0 0 10px #C800C6, 0 0 12px #7276D4, 0 0 14px #7276D4;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows items to wrap */
    padding: 0 10px;
    width: 95%;
}


header {
    background-image: linear-gradient(to right, #000000, #370036);
    color: #ffffff;
    padding: 7px 0;
    text-align: center;
}

header h1 {
    flex: 0 1 100%; /* Takes full width */
    text-align: center; /* Centers the title */
    margin: 0px 0; /* Adds some space above and below */
    animation: glow 2s infinite ease-in-out; /* Apply the glowing animation */
    font-size: 50px;
}

#website-logo {
    max-width: 200px;
    height: auto;
}

.logo-and-title {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 25px; /* Adjust the size as needed */
}

nav a:hover {
    color: #000000; /* Change to your desired highlight text color */
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Include box-shadow in the transition */
    text-shadow: 0 0 8px #7276D4, 0 0 10px #7276D4, 0 0 12px #7276D4, 0 0 14px #7276D4;
    text-shadow: 0 0 8px #C800C6, 0 0 10px #C800C6, 0 0 12px #7276D4, 0 0 14px #7276D4;
}


section img {
    max-width: 65%; /* Adjust this value as needed */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

section {
    padding: 20px;
    margin: 20px;
    background-image: linear-gradient(to right, #593fc0 5%, #570056 55%);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-content {
    display: flex;
    flex-direction: row;
}

.text {
    flex: 1;
}

.image {
    flex: 1;
    text-align: center; /* Optional: Center the image horizontally */
}

.image img {
    max-width: 25%; /* Ensure image doesn't exceed its container */
    height: auto; /* Maintain aspect ratio */
}


section h2 {
    color: #ffffff;
    font-size: 35px;
    text-align: center;
}

footer {
    background-image: linear-gradient(to right, #370036, #000000 );
    color: #ffffff;
    padding: 2px 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 20px; 
}

.social-links a, .footer-info a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

.social-links a:hover, .footer-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    font-size: 0.8em;
    opacity: 0.8;
}


ul {
    list-style-type: none;
}

li {
    margin: 10px 0;
}

#previous-tokens {
    padding: 20px;
    margin: 20px auto; 
    background-color: #370036;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: calc(100% - 75px); 
}

.tokens-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.token-image {
    width: 100%;
    height: auto; 
    border-radius: 4px; 
    margin-bottom: 10px;
}

.token {
    background-color: #000000;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.token h3 {
    margin-top: 0;
    text-align: center;
}


.token p {
    margin: 5px 0;
}


@media (max-width: 768px) {
    header, .header-content, nav ul, .section-content {
        flex-direction: column;
        text-align: center;
    }

    nav li {
        margin-left: 0; /* Remove the left margin for nav items */
        margin-bottom: 10px; /* Add some space between nav items */
    }

    .image img, section img {
        max-width: 55%; /* Ensure images use the available width */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 15px; /* Add some space below images */
    }

    .section-content, .logo-and-title {
        flex-direction: column;
    }

    /* Adjust the text and image containers within sections for smaller screens */
    .text, .image {
        flex: none;
        width: 100%;
    }
}

