
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier Prime', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.2;
    font-size: 16px;
}

header {
    background-color: #000000;
    padding: 20px 40px;
    border-bottom: 1px solid #333333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

header h1 {
    color: #00ff00;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

nav ul li a:hover {
    color: #ffff00;
}

main {
    margin-top: 80px;
}

.content-section {
    padding: 60px 40px;
    border-bottom: 1px solid #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-section:nth-child(1) {
    background-color: #ff0000;
    color: #000000;
}

.content-section:nth-child(2) {
    background-color: #00ff00;
    color: #000000;
}

.content-section:nth-child(3) {
    background-color: #0000ff;
    color: #ffffff;
}

.content-section:nth-child(4) {
    background-color: #ffff00;
    color: #000000;
}

.content-section:nth-child(5) {
    background-color: #ff00ff;
    color: #000000;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-align: center;
}

.section-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    line-height: 1.4;
}

.section-button {
    background-color: transparent;
    border: 2px solid currentColor;
    color: inherit;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.section-button:hover {
    background-color: currentColor;
    color: #000000;
}

.content-section:nth-child(3) .section-button:hover,
.content-section:nth-child(6) .section-button:hover {
    color: #ffffff;
}

footer {
    background-color: #000000;
    color: #666666;
    text-align: center;
    padding: 40px;
    border-top: 1px solid #333333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    nav {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    main {
        margin-top: 120px;
    }
    
    .content-section {
        padding: 40px 20px;
        min-height: 80vh;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .section-description {
        font-size: 16px;
    }
}



/* Image styling */
.section-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border: 2px solid currentColor;
    border-radius: 8px;
}

.meme-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 15px auto;
    display: block;
    border: 2px solid currentColor;
    border-radius: 8px;
}

.content-details {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 30px;
}

.content-details h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: inherit;
}

.content-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-details ul {
    list-style: none;
    padding: 0;
}

.content-details li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-details li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: inherit;
}

.expandable-section {
    display: none;
    margin-top: 30px;
}

.expandable-section.active {
    display: block;
}

.toggle-button {
    background-color: transparent;
    border: 2px solid currentColor;
    color: inherit;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.toggle-button:hover {
    background-color: currentColor;
    color: #000000;
}

.content-section:nth-child(3) .toggle-button:hover,
.content-section:nth-child(6) .toggle-button:hover {
    color: #ffffff;
}

