body {
    font-family: "Times New Roman", Times, serif;
    margin: 20px;
}

hr {
    border: 0;
    height: 2px;
    background-color: #00FF00;
}

.blink {
    animation: blinker 1s linear infinite;
}

.rainbow-text {
    background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.projects-table {
    width: 80%;
    border-collapse: collapse;
    margin: 0 auto;
}

.project-row td {
    border: 1px solid #00FF00;
    padding: 8px;
    text-align: left;
}

.project-title {
    font-weight: bold;
    font-family: "Courier New", Courier, monospace;
    cursor: pointer;
    color: #00FFFF;
    text-decoration: underline;
}

.project-details {
    background-color: #000033;
    padding: 10px;
    border: 1px dashed #C0C0C0;
    margin-top: 10px;
}

.project-img {
    max-width: 200px;
    border: 2px solid #C0C0C0;
    display: block;
    margin-bottom: 10px;
}

.contributors {
    margin-top: 10px;
    padding: 5px;
    border-left: 2px dashed #00FF00;
    background-color: #000022;
}

.contributors ul {
    margin: 5px 0;
    padding-left: 20px;
}

.contributors li {
    margin-bottom: 3px;
    list-style-type: none;
    font-family: "Courier New", Courier, monospace;
}