* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    color: #ffffff; /* Red for title */
    transition: color 0.3s ease;
}

h1:hover {
    color: #ffffff; /* Change to white on hover */
}

p {
    font-size: 1.2em;
    margin-top: 10px;
    color: #ffffff; /* White text */
}

main {
    max-width: 800px;
    margin: 0 auto;
}

.scripts {
    background-color: #1a1a1a; /* Dark grey background */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scripts:hover {
    transform: scale(1.05); /* Slightly scale up */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.5); /* Red shadow on hover */
}

.scripts h2 {
    font-size: 2em;
    color: #ffffff; /* Red for script titles */
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.scripts h2:hover {
    color: #ffffff; /* Change to white on hover */
}

.code {
    background-color: #333333; /* Dark background for code */
    color: #ffffff; /* White text for code */
    font-family: "Courier New", Courier, monospace;
    padding: 15px;
    border-radius: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 100px;
    line-height: 1.5em;
    overflow-y: auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.code:hover {
    background-color: #555555; /* Lighten background on hover */
    transform: translateY(-5px); /* Slightly raise the code block */
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1em;
    color: #888888;
    transition: color 0.3s ease;
}

footer p {
    margin-top: 10px;
}

footer:hover p {
    color: #ff0000; /* Change text to red on hover */
}
