body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Garamond', 'Times New Roman', serif !important;
}

#background-text-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.background-text-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.225);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    white-space: nowrap;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.card {
    /* background-color: white; */
    border: 2px solid #000;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
    text-align: left;
    width: 750px;
    height: 430px;
    font-family: 'Garamond', 'Times New Roman', serif !important;
    font: Garamond;
    transition: transform 0.2s;
    /* background-color: #e0e0e0; */
    background-color: white;
    background-size: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

#card-text {
    flex: 1;
    overflow-y: auto;
    margin-right: 10px;
    padding-right: 5px;
}

#card-text::-webkit-scrollbar {
    width: 6px;
}

#card-text::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#card-text::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#card-text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.project-card {
    border-left: 3px solid #000;
    padding-left: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.project-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.project-tech {
    font-size: 0.85em;
    color: #555;
    margin-bottom: 8px;
    font-style: italic;
}

.project-description {
    margin-bottom: 8px;
    line-height: 1.4;
}

.project-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-links a {
    color: #000;
    text-decoration: underline;
    font-size: 0.9em;
    transition: color 0.2s;
}

.project-links a:hover {
    color: #555;
}

.card:hover {
    transform: scale(1.025);
}

.button-container {
    margin-top: 20px;
}

.card button {
    background-color: #919191 !important;
    
    /* color: #ac9595; */
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #201d1d;
}

@media (max-width: 1200px) {
    .card {
        width: 90%;
    }
}