.projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 80%;
}

.project-card {
    background: #fafbfc;

    width: 100%;
    box-sizing: border-box;
    padding-left: 1vw;
    padding-top: 1vh;
    padding-bottom: 3vh;
    margin: 0 auto;
    border: 1px solid #e9ecf0;
    border-radius: 12px;

    text-align: center;
    text-decoration: none;
    color: black;
    display: grid;

    transition: all 0.25s ease;
}

.project-title {
    display: flex;
    flex-direction: column;
}

.project-title > *{
    margin: 0;
}

.projects > .project-title, .pro1 {
    grid-column: 1/ span 2;
}

.repo {
    display: flex;
}

.repo a{
    text-decoration: none;
    color: black;
    font-family: 'Courier New', monospace;
    text-align: left;
    word-break: break-all;
}

.repo a:hover {
    text-decoration: underline black 2px;
}

.description > *{
    text-align: center;
}

.project-card:hover {
    border-color: #d0d7de;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

