/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: 'Press Start 2P', cursive; /* Retro pixelated font */
    margin: 0;
    padding: 0;
    background: #000; /* Black background */
    color: #fff; /* White text for contrast */
}

header {
    background: #00ff00; /* Charli XCX Brat Green */
    color: #000; /* Black text */
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #00ff00; /* Brat Green border */
    margin-bottom: 30px; /* Space below the header */
}

header h1 {
    margin: 0;
    font-size: 3em;
    text-shadow: 2px 2px #000; /* Black shadow for pop effect */
}

header p {
    margin: 0;
    font-size: 1.5em;
}

nav {
    margin-top: 20px; /* Space above the navigation tabs */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0; /* Reset default margin for ul */
}

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

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 15px;
    background: #00ff00; /* Charli XCX Brat Green */
    border-radius: 10px;
    box-shadow: 2px 2px 5px #000; /* Black shadow */
}

nav ul li a:hover {
    background: #00cc00; /* Darker Brat Green on hover */
    color: #fff;
    box-shadow: 2px 2px 10px #000; /* Darker shadow on hover */
}

.hero {
    background: #000; /* Black background */
    padding: 50px 0;
    text-align: center;
    border-top: 4px solid #00ff00; /* Charli XCX Brat Green border */
}

.hero h2 {
    margin: 0;
    font-size: 3em;
    color: #00ff00; /* Charli XCX Brat Green */
}

.hero p {
    font-size: 1.5em;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

section {
    padding: 20px 0;
}

h2 {
    color: #00ff00; /* Charli XCX Brat Green */
    font-size: 2.5em;
    border-bottom: 2px solid #00ff00; /* Brat Green underline */
}

.paper-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.paper-list article {
    background: #333; /* Dark gray background for contrast */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    flex: 1 1 45%;
    border: 3px solid #00ff00; /* Charli XCX Brat Green border */
    position: relative;
    overflow: hidden;
}

.paper-list article h3 {
    margin-top: 0;
    color: #00ff00; /* Charli XCX Brat Green */
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    font-weight: bold;
}

form input, form textarea {
    padding: 10px;
    border: 2px solid #00ff00; /* Charli XCX Brat Green border */
    border-radius: 5px;
    background: #000; /* Black background for form elements */
    color: #fff; /* White text */
}

form button {
    background: #00ff00; /* Charli XCX Brat Green */
    color: #000;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background: #00cc00; /* Darker Brat Green on hover */
}

footer {
    background: #00ff00; /* Charli XCX Brat Green */
    color: #000;
    padding: 10px 0;
    text-align: center;
    border-top: 4px solid #00ff00; /* Brat Green border */
}

#music {
    background: #000; /* Black background */
    color: #fff; /* White text */
    padding: 20px 0;
    text-align: center;
}

#music h2 {
    color: #00ff00; /* Charli XCX Brat Green */
}

iframe {
    border: none; /* Remove default border */
    border-radius: 10px; /* Rounded corners */
}

/* New styles for image comparison section */
#comparison {
    padding: 20px 0;
}

.image-comparison {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.image-item {
    flex: 1;
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
    border: 2px solid #00ff00; /* Charli XCX Brat Green border */
    margin-bottom: 10px;
}

.image-item h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #00ff00; /* Charli XCX Brat Green */
}

.image-item p {
    font-size: 1em;
    color: #ccc; /* Light gray for text */
}
