body {
    background-color: midnightblue;
    width: 60%;
    margin: auto;
    border-spacing: 25px;
    padding-bottom: 50px;
}

h1 {
    font-size: 40px;
    font-family: 'Courier New', monospace;
    color: white;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

h2 {
    font-size: 32px;
    font-family: 'Courier New', monospace;
    color: white;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 25px;
    margin-bottom: 0;
}

p {
    color: black;
    font-size: 18px;
    line-height: 1.6;
}

.tagline {
    font-family: 'Courier New', monospace;
    color: mediumslateblue;
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}

div {
    background-color: white;
    width: 90%;
    border: 15px solid mediumslateblue;
    padding: 45px;
    margin: 0 auto;
}

.section {
    margin-bottom: 40px;
}

.projects-section {
    padding: 30px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 60px;
    background: none;
    border: none;
    padding: 0 0 50px 0;
    width: 100%;
}

.project-card {
    background-color: #f8f9fa;
    border: 3px solid mediumslateblue;
    border-radius: 10px;
    padding: 25px;
    margin: 0;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(72, 61, 139, 0.3);
}

.project-card h3 {
    font-family: 'Courier New', monospace;
    color: mediumslateblue;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 0;
}

.project-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-stack {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.tech-tag {
    display: inline-block;
    background-color: mediumslateblue;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    flex-shrink: 1;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-link {
    display: inline-block;
    background-color: midnightblue;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.project-link:hover {
    background-color: mediumslateblue;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        width: 90%;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }
}