body {
    background: #181818;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.project-logo img[src*="itsjeremy"] {
    padding: 0.5rem;
    box-sizing: border-box;
}

.return-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.8em;
    z-index: 100;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease;
}

.return-icon:hover {
    transform: scale(1.2);
}

.watermark {
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 50;
    text-align: center;
    white-space: nowrap;
}

.projects-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.project-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.project-logo img:hover {
    transform: scale(1.1);
}

.project-description h2 {
    margin: 0 0 12px 0;
    font-size: 1.6em;
    color: #fff;
}

.project-description p {
    margin: 0;
    font-size: 1em;
    color: #ddd;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 600px) {
    .projects-container {
        padding-top: 100px;
    }

    .project {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .project-logo img {
        width: clamp(120px, 35vw, 160px);
        height: clamp(120px, 35vw, 160px);
    }

    .project-description h2 {
        font-size: clamp(1.1em, 4vw, 1.4em);
    }

    .project-description p {
        font-size: clamp(0.9em, 3.5vw, 1em);
    }
}


.code-intro {
  max-width: 640px;
  margin: 0 auto 60px;
  padding: 0 20px;
  text-align: center;
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
  opacity: 0.7;
}
